Downloading a webpage

davesmith202

Employee of Access World
Local time
Today, 06:51
Joined
Jul 20, 2001
Messages
522
How can I download the html of a webpage using Microsoft Access and VBA? Is there a command for this?

Thanks,

Dave
 
Will that mean I have to actually open up a browser window?
 
Inside your Browser control, yes. That control, like all other controls has a visible property if you choose to keep it hidden.
 
I really can't work out how to use that control. it is on my Form but I just don't know where to go from there. I have:

Me.WebBrowser1.Object "http://www.mywebpage.com"

But that doesn't work!

Please help.

Dave
 
Try: Me.WebBrowser1.Navigate "http://www.mywebpage.com"
 

Users who are viewing this thread

Back
Top Bottom