print a pdf file from a table link

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
 
S

Stuart McCall

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top