|
-
March 16th, 2001, 04:57 PM
#1
opening help file from menu
I have attached a html help file to my app. I used install shield to put it in the program files with my program I want to open that up if they want to view the help menu. I need to gets it path some how, right?
How can I do this?
-
March 16th, 2001, 05:35 PM
#2
Re: opening help file from menu
in the Sub Main of your project (or whatever your "start-up object" is) - set the App.HelpFile property to the current directory:
Sub Form_Load()
App.HelpFile = App.Path & "\myhelpfile.chm"
End Sub
or something like that.
hope this helps,
john
John Pirkey
MCSD
http://www.ShallowWaterSystems.com
http://www.stlvbug.org
John Pirkey
MCSD (VB6)
http://www.stlvbug.org
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|