I can download a web's source using the inet but I have to be specific as to what page I want to grab. Assuming I enter the default page, is there a way to cycle through the entire site and get each page?
Printable View
I can download a web's source using the inet but I have to be specific as to what page I want to grab. Assuming I enter the default page, is there a way to cycle through the entire site and get each page?
Webbrowser Control can do this :rolleyes:.
Code:WebBrowser1.ExecWB OLECMDID_SAVEAS,OLECMDEXECOPT_PROMPTUSER
Thanks Matthew...
I've been noticing your post lately and you are broadening your horizons. Keep plugging...
Wayne
Also, you know that you could reference the ShDocVw.dll control so that you don't even have to show the web page.
Just:
Dim ie As New InternetExplorer
ie.Navigate...
ie.ExecWB OLECMDID_SAVEAS,OLECMDEXECOPT_PROMPTUSER
I don't know if you can do it without having the Save dialog popup though. Microsoft Internet Controls isn't all that great. It doesn't seem to be fully complete :rolleyes:.