I’m trying to create a button on a form that will basically duplicate the
Insert/Hyperlink menu command and let the user browse for a file path, but
I would like the “use relative path for hyperlink” check box to be
cleared, since the users often forget to do that, and it seems to be
checked by default.
The code I have so far works fine, but is there an argument or parameter
that will let me specify that I want the check box cleared? Here is what I
have so far:
Me!Shortcut.SetFocus
DoCmd.RunCommand acCmdInsertHyperlink
(“Shortcut” is the name of the field that will hold the hyperlink.)
Thanks for your help!
Craig