Hi,
I created following macro to move 3 files from one folder to another
New I would like to make a printout of those 3 pdf-files
Thanks
I created following macro to move 3 files from one folder to another
Code:
Sub InpDat()
Set fso = CreateObject("scripting.filesystemobject")
fso.MoveFile Source:="C:\FinSend\*.pdf", Destination:="D:\PdfF" ' Move pdf's
End Sub
Thanks