Hello all,
I have a button that opens a browse for window, to allow you to find a file and create a hyperlink to that file. This is then placed in a text box. The code I use is:
I would like to expand this a little. I want to locate a file, no matter where, copy it to a specified folder, and then create a hyperlink to the copied file. I would also like to do more then one hyperlink if at all possible.
Thanks in advance,
Brian Smith
I have a button that opens a browse for window, to allow you to find a file and create a hyperlink to that file. This is then placed in a text box. The code I use is:
Code:
Private Sub browse_Click()
Me.[Hyperlink].SetFocus
On Error GoTo browse_stop
RunCommand acCmdInsertHyperlink
browse_stop:
End Sub
Thanks in advance,
Brian Smith
Comment