G
GIP via AccessMonster.com
Dear All,
I have form which contains a hyperlink-field (link). For every record I put
there a reference to an pdf-document. To do that I use the code:
============================================
Private Sub link_DblClick(Cancel As Integer)
Me.[link].SetFocus
RunCommand acCmdInsertHyperlink
End Sub
==============================================
To open that documents I use Allen Browne's gohyperlink to get rid of the
security warnings.
I use the following code:
======================================================
Private Sub link_Click()
Call GoHyperlink(Me.[link])
End Sub
=======================================================
The pdf opens however I still get a security warning.
Can somebody tell me what I do wrong?
Thanks in advance,
GIP
I have form which contains a hyperlink-field (link). For every record I put
there a reference to an pdf-document. To do that I use the code:
============================================
Private Sub link_DblClick(Cancel As Integer)
Me.[link].SetFocus
RunCommand acCmdInsertHyperlink
End Sub
==============================================
To open that documents I use Allen Browne's gohyperlink to get rid of the
security warnings.
I use the following code:
======================================================
Private Sub link_Click()
Call GoHyperlink(Me.[link])
End Sub
=======================================================
The pdf opens however I still get a security warning.
Can somebody tell me what I do wrong?
Thanks in advance,
GIP