coasterman
Registered User.
- Local time
- Today, 15:53
- Joined
- Oct 1, 2012
- Messages
- 59
The following code works but my instinct tells me this is not good coding and might cause me issues later, any suggestions? If it helps define the links will always be http:// links rather than file links.
Code:
Private Sub WebLink_DblClick(Cancel As Integer)
Dim myLink As String
If Not IsNull(Me.txtWebLink) Then
myLink = Me.txtWebLink
Application.FollowHyperlink (myLink)
End If
End Sub