Auto Printing .PDF files

  • Thread starter Thread starter Sheila Jipping
  • Start date Start date
S

Sheila Jipping

I would like to create a table that has a part number and the file address
of an existing .PDF file. (Don't need help here.)

I would like to be able to use the data on this table to automatically print
the .PDF file when a user selects this part - I don't want to manually open
the reader.

At this time I do not have Adobe installed - just the free reader.

Thanks in advance,

sheila

(Direct email remove *remove* from email address)
 
The following works for me:

Dim strShell As String

strShell = """C:\Program Files\Adobe\Acrobat 6.0\Reader\AcroRd32.exe"" " &
_
"/p /h ""C:\Folder\File.pdf"""
Shell strShell, vbHide

(Adobe Reader Version 6.0.3)
 
Thanks SO VERY much!!!!

sheila

Douglas J. Steele said:
The following works for me:

Dim strShell As String

strShell = """C:\Program Files\Adobe\Acrobat 6.0\Reader\AcroRd32.exe"" "
& _
"/p /h ""C:\Folder\File.pdf"""
Shell strShell, vbHide

(Adobe Reader Version 6.0.3)
 
Back
Top