nightflight
Registered User.
- Local time
- Today, 23:53
- Joined
- Mar 15, 2011
- Messages
- 24
at the moment, the OnClick event procedure for a button is
There are three different certificate files, EA Certificate, FAW Certificate and FAWR Certificate
What I would like is for the "FAWR" bit to be [qry_certissued]![certtype] as [certtype] is either EA, FAW or FAWR, thus requiring only one button rather than 3.
I've tried
But get error 490, cannot find file
Code:
Private Sub btn_certificate_Click()
Application.FollowHyperlink "C:\<filepath>\FAWR Certificate.doc"
End Sub
What I would like is for the "FAWR" bit to be [qry_certissued]![certtype] as [certtype] is either EA, FAW or FAWR, thus requiring only one button rather than 3.
I've tried
Code:
Private Sub btn_certificate_Click()
Application.FollowHyperlink "C:\<filepath>\[qry_certissued]![certtype] Certificate.doc"
End Sub