Hello,
I have the below code that will open the insert hyperlink box.
Is there a way to add the file path location once the insert hyperlink box opens?
code:
Thank you
I have the below code that will open the insert hyperlink box.
Is there a way to add the file path location once the insert hyperlink box opens?
code:
Code:
Private Sub cmdLink_Click()
'SetFocus to hyperlink field
Me.txtHyperlink.SetFocus
'Run command to edit hyperlink
DoCmd.RunCommand acCmdEditHyperlink
'SetFocus to Notes field
Me.Notes.SetFocus
End Sub
Thank you