Hello,
I want to write code to change the texttodisplay and address of several hundred pdf (hyperlink field) in a Access 2007 table.
Field name is "pdf"
sample code below is not complete. The line after the edit will change both texttodisplay and address to what is between the 2 quotation marks.
How do I change the texttodisplay ?
Dim dbinfo1 As DAO.Database
Dim char1 As DAO.Recordset
char1.MoveFirst
cont1:
If char1![ref #] = "236" Then
With char1
.Edit
char1!pdf = "#I:\Everyone\MSDS Database\MSDS PDF folder\214.pdf#"
'remaining code...