View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Ake Ake is offline
external usenet poster
 
Posts: 18
Default print the pdf file

I have the following codes that opens up my pdf file. What my question is
what should I add to these codes to get the pdf file printed?

Sub PrintPDF()
Dim strPSFile As String, strPDFFile As String
strFolder = "C:\Documents and Settings\KRP\Desktop\"
strPDFFile = strFolder & "075942LA.PDF"
ActiveWorkbook.FollowHyperlink Address:=strPDFFile, NewWindow:=False
End Sub


Thanks,