How to embed instruction to form?

  • Thread starter Thread starter Cam
  • Start date Start date
C

Cam

Hello,

I have an instruction document (with pictures) in Word on how to input data
in the database. What is the best way to link this document to a button for
users to pull up to read or print the instruction? Thanks
 
You can make a button or label with a hyperlink to that file (I call mine
'Help')

You might want to make it a pdf or html format so versions of Word is not an
issue and users won't be able to change the document
 
Check the vbo help FollowHyperlink

you will need something like

application.followhyperlink strAddress, , True

where strAddress is the hyperlink address
 
Back
Top