|
Question : Open a web page from access 2003
|
|
Hi
I would like to launch a web browser using a button on an access form, the web browser should then navigate to a URL provided in a text box also on the form.
Many thanks Matt
|
|
Answer : Open a web page from access 2003
|
|
Try this in your command button's click event (adjust the textbox name to suit your app.):
Application.FollowHyperLink me.txtYourTextbox,,True
|
|
|
|