S
Senexis
I have a form that I was able to make a hyperlink creating by writting VB
behind the click on function.
Private Sub WEB_LINK_Click()
Dim strREQ As String
Dim strFnbr As String
strFBnbr = Me.F_NUM
strREQ = "http://thewebsite-" & strFnbr
Application.FollowHyperlink strREQ
End Sub
This works, but now I want to export the form out into a html format, and
obviously the VB scribt isn't crossing over when anyone clicks on the display
name for that field.
Basicly I'm trying to make a page with links that are generated from data.
Any ideas?
behind the click on function.
Private Sub WEB_LINK_Click()
Dim strREQ As String
Dim strFnbr As String
strFBnbr = Me.F_NUM
strREQ = "http://thewebsite-" & strFnbr
Application.FollowHyperlink strREQ
End Sub
This works, but now I want to export the form out into a html format, and
obviously the VB scribt isn't crossing over when anyone clicks on the display
name for that field.
Basicly I'm trying to make a page with links that are generated from data.
Any ideas?