Help with Web Browser Control

W

Wes

Hi,

Searched KBase and Newsgroup threads but not having much
luck.

I'm trying to set up the web browser control on a form.

I've used the following code to navigate using the web
browser control.

Me!WebBrowser0.Navigate "Url"

I'm trying to use a command button to navigate forward
/backwards or have the forward/backwards control displayed
on the web browser control.


Any help is appreciated
 
T

TC

Wes said:
Hi,

Searched KBase and Newsgroup threads but not having much
luck.

I'm trying to set up the web browser control on a form.

I've used the following code to navigate using the web
browser control.

Me!WebBrowser0.Navigate "Url"

I'm trying to use a command button to navigate forward
/backwards or have the forward/backwards control displayed
on the web browser control.

Any help is appreciated


There are no forward/backward controls "on" the webbrowser control. You make
it go forwards or backwards using methods of the webbrowser control. I think
those methods are GoForwards and GoBack (but I don't have Access here to
check). So you would add your own "Go Forwards" and "Go Backwards" buttons,
& have their Click events say Me!WebBrowser0.GoForward, or
Me!WebBrowser0.GoBack.

HTH,
TC
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top