kfschaefer
Registered User.
- Local time
- Yesterday, 23:20
- Joined
- Oct 10, 2008
- Messages
- 58
I am attempting to create a function that will convert a record id in a query to display a hyper link value.
Not sure if this can be done. What would be the correct syntax to change the RecId in the query that will inturn be exported to an HTML output.
Would the newly created hyper link remain a link once outputed to the HTML file?
Would I have to create a table first for the hyperlink to remain?
I would like to include a hyperlink value of the record ID so that when the user clicks the link the user will be directed back to the database and its record. I found code that will allow the Command() function to read this hyperlink, however, I first must convert the RecordID to the correct file path.
K
Public Const strLink = "\\path1\path2\EmergentWk\EmergentWork.mdb"
Function HLink(nseq As String)ss hyperlink
gFP = strLink & "/cmdID= " & gID & ""
HLink = gFP
End Function
Not sure if this can be done. What would be the correct syntax to change the RecId in the query that will inturn be exported to an HTML output.
Would the newly created hyper link remain a link once outputed to the HTML file?
Would I have to create a table first for the hyperlink to remain?
I would like to include a hyperlink value of the record ID so that when the user clicks the link the user will be directed back to the database and its record. I found code that will allow the Command() function to read this hyperlink, however, I first must convert the RecordID to the correct file path.
K
Public Const strLink = "\\path1\path2\EmergentWk\EmergentWork.mdb"
Function HLink(nseq As String)ss hyperlink
gFP = strLink & "/cmdID= " & gID & ""
HLink = gFP
End Function