Chesterex1
Vendor
I have a series (over 800) pdf files I need to take down from server site and save locally. I think I am 1/2 the way there with code below - just need to know a quick way I can Save the document as a pdf once it loads in the Browser window (I had assumed there would be a reference for the SaveAs command within the Browser - but no luck):
Set oFSO = CreateObject("Scripting.FileSystemObject")
Set WshShell = CreateObject("WScript.Shell")
Set Ie = CreateObject("InternetExplorer.Application")
Ie.Visible = True
Ie.navigate "
Do While Ie.Document Is Nothing
wScript.sleep 50
Loop
Do While Ie.Document.body Is Nothing
wScript.sleep 50
Loop
XXX.SAVE THEDOCUMENT as "c:\local\pdf1.pdf"
ANy help or direction would be Greatly appreciated!!!
Set oFSO = CreateObject("Scripting.FileSystemObject")
Set WshShell = CreateObject("WScript.Shell")
Set Ie = CreateObject("InternetExplorer.Application")
Ie.Visible = True
Ie.navigate "
Do While Ie.Document Is Nothing
wScript.sleep 50
Loop
Do While Ie.Document.body Is Nothing
wScript.sleep 50
Loop
XXX.SAVE THEDOCUMENT as "c:\local\pdf1.pdf"
ANy help or direction would be Greatly appreciated!!!