Hyperlink to different websites

B

BigK9

I have a database similar to the Northwind Sample. I want to add a form with
hyperlinks on it to take the user directly to different websites the customer
uses on a daily basis. What is the easiest way to do this.
 
J

Jae

I'd use

Dim strAddress as string

strAddress = me.fieldThatContainsHyperlinkAddress

followhyperlink strAddress
 
Top