G
Guest
I have created a button on an access form that when clicked runs the
following ON CLICK event procedure to open the named PDF file for viewing
with Adobe Acrobat. It works fine on my computer but when other users click
the button it appears that acrobat is opening to a gray screen and
immediately closing. Any ideas what might be happening and why it would work
great on my machine but not on other users machines.
Private Sub View_PDF1_Click()
Dim strDoc As String
If Not IsNull(Me.Drawing1) Then
strDoc = "\\server01\f\casework\drawings\" & Me.Drawing1 & ".pdf"
FollowHyperlink strDoc
End If
End Sub
Thanks
following ON CLICK event procedure to open the named PDF file for viewing
with Adobe Acrobat. It works fine on my computer but when other users click
the button it appears that acrobat is opening to a gray screen and
immediately closing. Any ideas what might be happening and why it would work
great on my machine but not on other users machines.
Private Sub View_PDF1_Click()
Dim strDoc As String
If Not IsNull(Me.Drawing1) Then
strDoc = "\\server01\f\casework\drawings\" & Me.Drawing1 & ".pdf"
FollowHyperlink strDoc
End If
End Sub
Thanks