Use a form to open a Word doc

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello:
Can someone please tell me how I can use a form or button to open a specific
MS Word document? I would like the user to be able to open the userguide(word
doc) with a button or form.
Thanks,
J
 
Just use

dim strDoc as string

strDoc = "c:\data\mydoc.doc"
application.FollowHyperlink strDoc

You can launch any type file....excel..pdf..etc. with the above.....
 
Back
Top