Suggest you create a hyperlink field in your table and enter the web address
there. Your form can then display the hyperlink, or alternatly have a button
that calls the hyperlink based on a name for the site.
Just as a side note...
Using a hyperlink field tends to store more info in the tables than is
strictly necessary. Many developers will instead store this as a string and
use the IsHyperlink property of a control on the form, and call it through
code via the Application.FollowHyperlink method, or the Shell function or
ShellExecute API.
Often a string is easier than dealing with the hyperlink syntax (which is
quite a bit different than that of a string) as well, and the only place you
ever really need that is on a form anyway.
Something to consider maybe.
Happy coding
--
Jack Leach
www.tristatemachine.com
"I haven't failed, I've found ten thousand ways that don't work."
-Thomas Edison (1847-1931)