Are URLs active in Acess

G

Guest

I've created a database that includes things like phone number, email address
and web address. My employer wants to be able to click on a link in the data
base and have the website open up and active. Is that possible? The other
option would include would I guess have me covert the database into an excel
spreadsheet. I'd much rather leave it the way it is though. Any thoughts
would be greatly appreciated.

Thanks!
 
J

John Nurick

If you store URL's in a hyperlink field, and bind a textbox to that
field, then clicking on the link will launch it. (The URL of an email
address must include the mailto protocol, e.g.
mailto:[email protected]
).

Alternatively, you can use stuff like
Application.FollowHyperlink "mailto:" & EmailAddress
in an event procedure
 

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