I am trying to programmatically build the hyperlink Display_Text and Address for records as they are processed.
I have a hyperlink type field named "Link" in the table.
Using an ADODB recSet, I am trying to assign values to this field so that the field will display "GoTo_Link" and the URL would be "file:///C:\MyFolder\Sonefile.txt".
This does not work:
recSet.Fields("Link") = HyperlinkPart("GoTo_Link", acDisplayText)
recSet.Fields("Link") = HyperlinkPart("file:///C:\MyFolder\Sonefile.txt", acAddress)
Does someone have an answer? Any help is appreciated. TIA!
I have a hyperlink type field named "Link" in the table.
Using an ADODB recSet, I am trying to assign values to this field so that the field will display "GoTo_Link" and the URL would be "file:///C:\MyFolder\Sonefile.txt".
This does not work:
recSet.Fields("Link") = HyperlinkPart("GoTo_Link", acDisplayText)
recSet.Fields("Link") = HyperlinkPart("file:///C:\MyFolder\Sonefile.txt", acAddress)
Does someone have an answer? Any help is appreciated. TIA!