H
Harley Feldman
I want to add a hyperlink to ADO records in one of the fields. I use the code below:
With rst
.AddNew
.Fields("Recipe") = RecipeName
.Fields("Type") = ""
.Fields("File") = "Recipes\" & RecipeName
.Update
End With
I am left with the correct address in the "File" field, and it looks like a hyperlink, but it is just a text string. How can I make the "File" field be a real hyperlink?
Harley
With rst
.AddNew
.Fields("Recipe") = RecipeName
.Fields("Type") = ""
.Fields("File") = "Recipes\" & RecipeName
.Update
End With
I am left with the correct address in the "File" field, and it looks like a hyperlink, but it is just a text string. How can I make the "File" field be a real hyperlink?
Harley