B
Bdavis
I have an application with Hyperlink field in a form. When the user double
clicks on the field, I use the following code to bring up the insert
Hyperlink Dialog Box.
Private Sub Support_DblClick(Cancel As Integer)
On Error GoTo Err_Support_DblClick
DoCmd.RunCommand acCmdInsertHyperlink
Exit_Support_DblClick:
Exit Sub
Err_Support_DblClick:
Resume Exit_Support_DblClick
End Sub
A couple questions... is there a way I can have the dialog box open to a
specific directory instead of the current directory?
Lastly ( and more importantly) for some reason, when certain users use this
feture, the link gets stored in the following form: ..\..\..\charge through
copies of bills\November 15\1-Katten-Mercer Staffing.pdf
I don't know why it does this instead of the full path name. The problem is
that ( I think) the Front End is stored on each users' computer and I'm
guessing the ..\..\.. means something different depending on the computer
it's being clicked on??? Either way, when it saves the hyperlinks like that,
they don't always work.
Ideas?
clicks on the field, I use the following code to bring up the insert
Hyperlink Dialog Box.
Private Sub Support_DblClick(Cancel As Integer)
On Error GoTo Err_Support_DblClick
DoCmd.RunCommand acCmdInsertHyperlink
Exit_Support_DblClick:
Exit Sub
Err_Support_DblClick:
Resume Exit_Support_DblClick
End Sub
A couple questions... is there a way I can have the dialog box open to a
specific directory instead of the current directory?
Lastly ( and more importantly) for some reason, when certain users use this
feture, the link gets stored in the following form: ..\..\..\charge through
copies of bills\November 15\1-Katten-Mercer Staffing.pdf
I don't know why it does this instead of the full path name. The problem is
that ( I think) the Front End is stored on each users' computer and I'm
guessing the ..\..\.. means something different depending on the computer
it's being clicked on??? Either way, when it saves the hyperlinks like that,
they don't always work.
Ideas?