hyperlink in textbox

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I want to store more than 1 hyperlink for every record in the textbox.
I have tried the following code, but an error occur (runtime error 7980: the
hyperlinkaddress is read only for this hyperlink. what did i do wrong?

Me.txtFile_Name = strName
Me.txtFile_Name.Hyperlink.Address = strPath & strName
 
You should only store one piece of data per field. If you need to store two
pieces of information, you should have two fields.
 
Back
Top