Open a Help File with a button

  • Thread starter Thread starter mattc66 via AccessMonster.com
  • Start date Start date
M

mattc66 via AccessMonster.com

Hi All,

I have created a help file (.hlp) and I want to have my users open it from a
button the form. How would I perform this. I tried to run the automated
button creation called RUN APP and it didn't seem to work.

Matt
 
one approach:
create a command button and look at the HyperlinkAddress property. Fill
the property with the file path and, as long as the .hlp extension has a
valid association in windows, a simple click should open it.

OR

leave the HyperlinkAddress property blank. Then, in the Click event of the
button:
Application.FollowHyperlink strFilepath

HTH,
 
mattc66 via AccessMonster.com said:
I have created a help file (.hlp) and I want to have my users open it from a
button the form. How would I perform this. I tried to run the automated
button creation called RUN APP and it didn't seem to work.

For one simplish app, (20 tables, 100 forms, 50 reports) I created a
help text table with a summary line and a memo field. Then I created
a form for me to do updates/additions and another form for the users
to view the help.

Now wherever I need help I put in a command button with a ? as the
icon and open the user form with the appropriate ID field.

Nothing fancy. No embedded chunks of screen shots which might be the
biggest problem but it works for what I need.

Tony
--
Tony Toews, Microsoft Access MVP
Please respond only in the newsgroups so that others can
read the entire thread of messages.
Microsoft Access Links, Hints, Tips & Accounting Systems at
http://www.granite.ab.ca/accsmstr.htm
Tony's Microsoft Access Blog - http://msmvps.com/blogs/access/
 
Back
Top