Private Sub LabelWEB1_Click()
Application.FollowHyperlink Forms!Contacts!WEB_1
End Sub
(Also, how do I get rid of the Hyperlink security warning)
What is GoHyperlink()? It is not an Access functionCorrect Pat - Its actually an Allen Browne function.
Private Sub LabelWEB1_Click()
Dim HypString As String
HypString = Me.WEB_1
Application.FollowHyperlink HypString, , True
' GoHyperlink (Me.WEB_1)
End Sub
Similar results with GoHyperlink()
It is a Jet/ACE only data typeI didn't know that.