print a pdf file from a table link

  • Thread starter Thread starter iccsi
  • Start date Start date
I

iccsi

I need print pdf files in the a folder with names in a table.
I can find and open the files in the folder, but looking a solution to print from the folder continues.

Your help and information is great appreciated,


iccsi
 
iccsi said:
I need print pdf files in the a folder with names in a table.
I can find and open the files in the folder, but looking a solution to
print from the folder continues.

Your help and information is great appreciated,


iccsi

Dim s As String
s = Dir(Foldername & "\*.pdf")
Do While s <> ""
'Print file s here (include path)
s = Dir
Loop

HTH
 
Back
Top