Generic Help and About Forms? [C#]

Shaitan00

Junior Contributor
Joined
Aug 11, 2003
Messages
358
Location
Hell
Really simple/quick question - I am in the final stages of my application and wanted to make a ABOUT and possibly a HELP section.
If I recall from my previous experince with VB and C++ there is usually a Standard/Conventional ABOUT form somewhere - how do you access/load/open it in C#?

Also, is there something similar for the HELP?
Thanks,
 
I don't believe that there is an About form which comes standard with .Net, but they are easy enough to make.

As far as help, there are chm and HtmlHelp compilers available (but hard to find, in my experience). Help files made with these will open in standard Windows help windows. I personally generally either stick to HTML help, or if I am looking for something more professional, I have gone as far as designing my own (relatively simplistic) help system with an XML based help file (I can send the code your way if you really want, but it's nothing special).
 
Back
Top