Hi all!
I've a tricky question.
My client uses Term server only for the several Access Applications we've build.
Internet is restricted in the Term server so we can't use it.
Now we have a field that contains the our partners e.g. Is it possible to send the user outside the client to the internet page and not via the way below which triggered to the term server and fails...
Private Sub internet_Click()
Dim pos As Integer, strInternet As String
pos = Nz(InStr(1, internet, "#"), 0)
If pos <> 0 Then
strInternet = Mid(internet, pos + 1, Len(internet) - 1)
Application.FollowHyperlink strInternet
End If
End Sub
Thanx in advance
Gerard
I've a tricky question.
My client uses Term server only for the several Access Applications we've build.
Internet is restricted in the Term server so we can't use it.
Now we have a field that contains the our partners e.g. Is it possible to send the user outside the client to the internet page and not via the way below which triggered to the term server and fails...
Private Sub internet_Click()
Dim pos As Integer, strInternet As String
pos = Nz(InStr(1, internet, "#"), 0)
If pos <> 0 Then
strInternet = Mid(internet, pos + 1, Len(internet) - 1)
Application.FollowHyperlink strInternet
End If
End Sub
Thanx in advance
Gerard