Basic Help File

  • Thread starter Thread starter logicalfeline
  • Start date Start date
L

logicalfeline

How do I go about providing a basic one page html help file that's loaded
when the user chooses File > Help in a windows application I've written?
 
logicalfeline said:
How do I go about providing a basic one page html help file that's
loaded when the user chooses File > Help in a windows application
I've written?

For a simple HTML page, just create it, place it in your application's
folder and use this code to display it when the user chooses Help:
System.Diagnostic.Process.Start(Application.StartupPath + "@\help.html");

You'd better check if the file exists before displaying it.

For a real help system, check out Microsoft HTML Help workshop.
 
Back
Top