Exporting Forms into HTML and having links follow over.

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?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top