Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

create help file ?

Status
Not open for further replies.

ooops

MIS
Dec 21, 2000
91
US
Hello all,

Please show me the easiest way to create a help file and the help file is printable. Thanks so much in advance
 
Hello
Thank you all two of you very much for your help. I'm now trying the one that TheVampire suggested and I like it so far. I have one more question though, probably very stupid one :( How do i link the helpfile to my VB application ? Again, millions of thanks.
 
There is quite a bit to the help functions. The free editor I suggested has some "help" what you need to put the help file into your projects. It also will generate a .txt file of the constants to paste into your VB code after you are finished writing the help.

Check MSDN for the "HelpFile" property, and the Common Dialog Control, and associated other commands. That should get you on the right track.

Basically, you have to have a Common Dialog Control on your form. Once you have this, you can use the Helpcommand property to set what kind of help, then use the ShowHelp Method:

CommonDialog1.HelpFile = "HelpFile.hlp" 'Name of your hlp file here
CommonDialog1.HelpCommand = cdlHelpContents
CommonDialog1.ShowHelp

Would open the Contents page in your help editor.

HTH

Robert
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top