Hi all, Is it possible to automate the saving of a pdf in an open internet explorer webpage using Access Vba?
I am using.
Dim IE
Set IE = CreateObject("internetexplorer.application")
With IE
.Navigate http://mycompxxx.com/bin/portal_view_doc?DRAWING_NO=1234
Do Until IE.ReadyState = 4 'READYSTATE_COMPLETE
To fetch and open the PDF drawing from myworks server. This works, I just need to figure out how to save it to my harddisk now.
Thanks for any repsonse.
I am using.
Dim IE
Set IE = CreateObject("internetexplorer.application")
With IE
.Navigate http://mycompxxx.com/bin/portal_view_doc?DRAWING_NO=1234
Do Until IE.ReadyState = 4 'READYSTATE_COMPLETE
To fetch and open the PDF drawing from myworks server. This works, I just need to figure out how to save it to my harddisk now.
Thanks for any repsonse.