M
MrMackey via AccessMonster.com
When a control on a continous form is clicked, the followhyperlink does not
let the PDF file stay open. I have researched this online in various areas
including microsoft with no luck.
If the pdf link is hard coded into a label's "Hyperlink Address" any user can
open the pdf with no problem, so it appears there are no security issues nor
corrupted PDF files.
Now since I want it to be dynamic on a continous form I have tried both the
followhyperlink and the other option of adding a button and setting the
Hyperlink Address and it works great on all that have a PC no matter the
Adobe version they have. Anyone on a citrix (thin client) can however never
get the pdf do stay open no matter their version.
Since there is a mix of PC and thin clients with different network paths I
can't use a shell command as the path to the .exe is never consistant. There
are also sequrity issues with that approach that makes it not be an option
for me.
'Button sample code:
Private Sub Command20_Click()
Me.Command20.HyperlinkAddress = Me.Path
End Sub
'TextField sample code:
Private Sub anyTF_Click()
Application.FollowHyperlink Me.Path
'or
'Application.FollowHyperlink Me.Path,,True (same result)
End Sub
Microsoft did mention something about the Jet 4.0 driver having issues with
certain VB functions.
Does anyone have a solution?
Please Help! M'kaY?
Mr. Mackey
let the PDF file stay open. I have researched this online in various areas
including microsoft with no luck.
If the pdf link is hard coded into a label's "Hyperlink Address" any user can
open the pdf with no problem, so it appears there are no security issues nor
corrupted PDF files.
Now since I want it to be dynamic on a continous form I have tried both the
followhyperlink and the other option of adding a button and setting the
Hyperlink Address and it works great on all that have a PC no matter the
Adobe version they have. Anyone on a citrix (thin client) can however never
get the pdf do stay open no matter their version.
Since there is a mix of PC and thin clients with different network paths I
can't use a shell command as the path to the .exe is never consistant. There
are also sequrity issues with that approach that makes it not be an option
for me.
'Button sample code:
Private Sub Command20_Click()
Me.Command20.HyperlinkAddress = Me.Path
End Sub
'TextField sample code:
Private Sub anyTF_Click()
Application.FollowHyperlink Me.Path
'or
'Application.FollowHyperlink Me.Path,,True (same result)
End Sub
Microsoft did mention something about the Jet 4.0 driver having issues with
certain VB functions.
Does anyone have a solution?
Please Help! M'kaY?
Mr. Mackey