D davesmith202 Employee of Access World Local time Today, 06:51 Joined Jul 20, 2001 Messages 522 May 29, 2006 #1 How can I download the html of a webpage using Microsoft Access and VBA? Is there a command for this? Thanks, Dave
How can I download the html of a webpage using Microsoft Access and VBA? Is there a command for this? Thanks, Dave
RuralGuy AWF VIP Local time Yesterday, 23:51 Joined Jul 2, 2005 Messages 13,825 May 29, 2006 #2 Use the browser control.
D davesmith202 Employee of Access World Local time Today, 06:51 Joined Jul 20, 2001 Messages 522 May 29, 2006 #3 Will that mean I have to actually open up a browser window?
RuralGuy AWF VIP Local time Yesterday, 23:51 Joined Jul 2, 2005 Messages 13,825 May 29, 2006 #4 Inside your Browser control, yes. That control, like all other controls has a visible property if you choose to keep it hidden.
Inside your Browser control, yes. That control, like all other controls has a visible property if you choose to keep it hidden.
D davesmith202 Employee of Access World Local time Today, 06:51 Joined Jul 20, 2001 Messages 522 Jun 6, 2006 #5 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
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
RuralGuy AWF VIP Local time Yesterday, 23:51 Joined Jul 2, 2005 Messages 13,825 Jun 7, 2006 #6 Try: Me.WebBrowser1.Navigate "http://www.mywebpage.com"
RuralGuy AWF VIP Local time Yesterday, 23:51 Joined Jul 2, 2005 Messages 13,825 Jun 7, 2006 #7 Stephan Lebans has some browser commands in this demo of his.