J
Joel Allen
Hello,
I have some code that pulls up a Word document, and prints it. Here's a
snipit of code:
Sub CommandButtonFileCoverII_Click()
On Error Resume Next
Dim objDoc
Dim strCurrentPrinter' As String
Dim objWord
Set objDoc =
GetWordDocFileCoverII("\\tgps8\drawing$\Jobs\Task_Templates\Template-FILE
COVER.dot")
Call FillFieldsFileCoverII(objDoc)
objDoc.Application.Options.PrintBackground = True
Call RestoreWordFileCoverII
'MsgBox "The name of the active printer is " &
objDoc.Application.ActivePrinter
strCurrentPrinter = objDoc.Application.ActivePrinter ' store the current
active printer
On Error Resume Next ' ignore printing errors
objDoc.Application.ActivePrinter = "DYMO" ' change to another printer
if Item.UserProperties("PrintHold") = False then
objDoc.PrintOut ' print the active sheet
end if
I want to also pull up a PDF file and print that. How can I go about that?
Does anybody have any sample code?
Thanks Joel
I have some code that pulls up a Word document, and prints it. Here's a
snipit of code:
Sub CommandButtonFileCoverII_Click()
On Error Resume Next
Dim objDoc
Dim strCurrentPrinter' As String
Dim objWord
Set objDoc =
GetWordDocFileCoverII("\\tgps8\drawing$\Jobs\Task_Templates\Template-FILE
COVER.dot")
Call FillFieldsFileCoverII(objDoc)
objDoc.Application.Options.PrintBackground = True
Call RestoreWordFileCoverII
'MsgBox "The name of the active printer is " &
objDoc.Application.ActivePrinter
strCurrentPrinter = objDoc.Application.ActivePrinter ' store the current
active printer
On Error Resume Next ' ignore printing errors
objDoc.Application.ActivePrinter = "DYMO" ' change to another printer
if Item.UserProperties("PrintHold") = False then
objDoc.PrintOut ' print the active sheet
end if
I want to also pull up a PDF file and print that. How can I go about that?
Does anybody have any sample code?
Thanks Joel