Creating a Help Center in VB.NET
I'm developing a program in vb.net, and I want 开发者_C百科to add in some help pages to the program, without using web-based help, so more like when you hit F1 in the Microsoft Office programs.
Is there a straightforward way of doing this, other than just making it via lots of forms?
Thanks in advance!
Perhaps a small Sqlite database with the help content and a help browser that reads the content from the database?
Other than that you have CHM and HLP formats. With CHM you can use the HelpProvider to provide this information to your user.
http://en.wikipedia.org/wiki/Microsoft_Compiled_HTML_Help
精彩评论