The free version of Oasis that I downloaded was so full of bugs that I uninstalled it. ( plus it has built-in limitations on the free version ) Try this free one instead. So far no problems with it, and it's much easier to use.
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
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.