Gotta Be An Easy Way...

  • Thread starter Thread starter Joe
  • Start date Start date
J

Joe

I want the user to be able to press a button which will open a
help file. In the OnClick event handler I want to do something like:

DoCmd.OpenFile "CTExpress.hlp"

The file is in the correct format and displays ok when I
double-click on it, I just want the user to be able to access it from
the MS Access application

There has to be an easy way to do this which I am overlooking.

Any help appreciated.


Joe
 
Try:
Application.FollowHyperlink "C:\MyFolder\CTExpress.hlp"

That should start the file with the application registered in Windows to
handle HLP files.

If you want to specify a particular application, see help on Start.

Another alternative:
http://www.mvps.org/access/api/api0018.htm
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top