Thank you in advance for your time and help!
I have a command button on a form that has the following code:
Private Sub LibraryFile_Click()
Application.FollowHyperlink "\\Server1\data_admin\Library\2007\"
End Sub
This opens a folder containing separate folders for each record, which contain all the documents associated with a particular record.
I’m hoping that there is some code I can add that will use the job # in a textbox on the form to go one step further and open the folder associated with that particular record. Something like…
Private Sub LibraryFile_Click()
Application.FollowHyperlink "\\Server1\data_admin\Library\2007\[txtJob#]"
End Sub
I have a command button on a form that has the following code:
Private Sub LibraryFile_Click()
Application.FollowHyperlink "\\Server1\data_admin\Library\2007\"
End Sub
This opens a folder containing separate folders for each record, which contain all the documents associated with a particular record.
I’m hoping that there is some code I can add that will use the job # in a textbox on the form to go one step further and open the folder associated with that particular record. Something like…
Private Sub LibraryFile_Click()
Application.FollowHyperlink "\\Server1\data_admin\Library\2007\[txtJob#]"
End Sub