Bypass local web browser window

  • Thread starter Thread starter Jon
  • Start date Start date
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
 
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
 
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
 
Back
Top