Attaching a word document to a command button

L

Liz

How do I attached a microsoft word document to a command
button within my form.

I have a help button and I want to launch a microsoft
word help file when the user clicks the help button on
the form.

Thanks
 
R

Rick Brandt

Liz said:
How do I attached a microsoft word document to a command
button within my form.

I have a help button and I want to launch a microsoft
word help file when the user clicks the help button on
the form.

A quick and easy way...

Application.FollowHyperlink "Path to your doc"
 
Top