How do I display my applications Help in C#? In VB6 I did the following. Thanks.
Code:
Private Const HelpCNT = &HB
CommonDialog1.HelpFile = App.Path & "\HELPFILE.hlp"
CommonDialog1.HelpCommand = HelpCNT Or cdlHelpSetContents
CommonDialog1.ShowHelp
Printable View
How do I display my applications Help in C#? In VB6 I did the following. Thanks.
Code:
Private Const HelpCNT = &HB
CommonDialog1.HelpFile = App.Path & "\HELPFILE.hlp"
CommonDialog1.HelpCommand = HelpCNT Or cdlHelpSetContents
CommonDialog1.ShowHelp
You can use either ways :
1-
2-Code:System.Diagnostics.Process.Start("c:\\a.hlp");
You might need to look at the different args the static ShowHelp method takes.Code:Help.ShowHelp(this,"c:\\a.hlp");
Thanks. That was perfect. :wave: