


Format:
winhelp "filename" {context CONTEXT_ID};
This command starts the Windows help system and displays the help file "filename". The optional context parameter allows you to specify a help context in the help file. If you do not specify a context, the contents topic of the help file will display.
Example:
label HELP;
// Display the help file TEST.HLP's contents topic:
winhelp "TEST.HLP";
// Display the help file TEST.HLP's topic having context 1234:
winhelp "TEST.HLP" context 1234;


