Hyperlink on form giving error.

RycherX

Registered User.
Local time
Today, 03:19
Joined
Dec 17, 2009
Messages
16
I added a hyperlink object to my form. I referenced the link in the "edit hyperlink" screen to http://www.google.com
When I try to click on it, I get the error "Unable to open http://www.google.com. No program is registered to open this file."

Am I required to reference hyperlinks in a table? Is this a memory problem on my machine?

I was wondering how would access know to use Internet Explorer as the browser?
 
Store the link as text in the table. Then use the application.followhyperlink function to open web browser to the url.

Edit: Use this method to open the url on the click of your button...

Code:
application.followhyperlink "http://www.google.com"
 

Users who are viewing this thread

Back
Top Bottom