I am trying to write a sub to load a web page and save it on my local computer something like this
Doing it manually the steps will be file > saveas>saveastype webpagecomplete
I can not find any thing like this in the objects properties
Can any one point me in the right direction a API perhaps?
Code:
Dim ie As InternetExplorer
Set ie = CreateObject("InternetExplorer.Application")
ie.navigate "[URL unfurl="true"]http://www.tek-tips.com/viewthread.cfm?qid=1222444&page=1"[/URL]
ie.Visible = True
[COLOR=red][b]ie.Saveas "c:\mypathe\....html"[/b][/color red]
ie.Quit
I can not find any thing like this in the objects properties
Can any one point me in the right direction a API perhaps?