G
Goody
I am trying to write a short macro to generate a PDF file from a Project
schedule using PDF995. I have determined the code to send the file to PDF995,
but I need to specify the file name in advance, so no interaction is required
from the user. Thus far I have the following:
Sub PDF_Output()
' Prints file as PDF
FilePrintSetup "PDF995"
FilePageSetupPage PagesTall:=1, PagesWide:=1
FilePrint 1
End Sub
When this code is executed, the PDF995 Save As dialog box pops up requesting
a file name. How can I specify the file name in advance?
Goody
schedule using PDF995. I have determined the code to send the file to PDF995,
but I need to specify the file name in advance, so no interaction is required
from the user. Thus far I have the following:
Sub PDF_Output()
' Prints file as PDF
FilePrintSetup "PDF995"
FilePageSetupPage PagesTall:=1, PagesWide:=1
FilePrint 1
End Sub
When this code is executed, the PDF995 Save As dialog box pops up requesting
a file name. How can I specify the file name in advance?
Goody