Thread: Print PDF-files
View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Jos Vens[_2_] Jos Vens[_2_] is offline
external usenet poster
 
Posts: 134
Default Print PDF-files

Hi,

I have lots of pdf-files, the fullname is stored in excel-cells. I wonder if
it is possible to print them directly from excel?

eg. cell A1 = "C:\MyPdf1.pdf"
cell A2 = "C:\MyPdf2.pdf"

for i = 1 to 2
PrintPDF (mySheet.cells(i,1))
next


sub PrintPDF

????

end sub

Thanks
Jos Vens