Can anyone please help with the following.
If the file its trying to refer to does not exist, sure enough I get a 'Cannot find file' message box.
If the file does exists, the program begins to load Adobe but half a second later, closes again.
Its OK with XP running Office 2007 and Adobe Reader but fails with (dare I say it) Vista, Access2000 and Adobe Professional.
Im trying to avoid Shell to an absolute Adobe file name in case anyone has a different version and therefore different path/filename for the Adobe application. I just want it to open in the default application that would normally open a .pdf
... anyone ???
Thanks
If the file its trying to refer to does not exist, sure enough I get a 'Cannot find file' message box.
If the file does exists, the program begins to load Adobe but half a second later, closes again.
Its OK with XP running Office 2007 and Adobe Reader but fails with (dare I say it) Vista, Access2000 and Adobe Professional.
Code:
Private Sub lblShowQuote_Click()
Dim QuoteNo As String
QuoteNo = "G:\Quotes\" & txtQuoteID & ".pdf"
On Error GoTo Err_CannotOpenEnquiry
Application.FollowHyperlink QuoteNo
Exit_Err_CannotOpenEnquiry:
Exit Sub
Err_CannotOpenEnquiry:
MsgBox Err.Description
Resume Exit_Err_CannotOpenEnquiry
End Sub
Im trying to avoid Shell to an absolute Adobe file name in case anyone has a different version and therefore different path/filename for the Adobe application. I just want it to open in the default application that would normally open a .pdf
... anyone ???
Thanks
