Bypass local web browser window

J

Jon

I have a form with a hyperlink field displaying a URL and an embedded web
browser control which displays the associated web page in a panel in the
form. But I would also like the user to be able to bring up the same web
page in their browser as well if they want to -- in other words, the same
thing that happens **without** a browser window. At the moment putting the
web browser panel in the form seems to prevent this from happening.

Is this possible to bypass, and if so how?

Thanks,

Jon.
microsoft.public.access.formscoding
 
D

Daniel Pineault

add a button 'Open in Browser' and simply add an onclick event that call the
FollowHyperlink Method

Application.FollowHyperlink "http://www.google.ca"

or if the URL is in a control on the form

Application.FollowHyperlink Me.URLControlName
 
J

Jon

Perfect! Thank you!

Jon.

Daniel Pineault said:
add a button 'Open in Browser' and simply add an onclick event that call
the
FollowHyperlink Method

Application.FollowHyperlink "http://www.google.ca"

or if the URL is in a control on the form

Application.FollowHyperlink Me.URLControlName
 

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