Hi I need implement context help inside my .NET application. I have .chm file and I\'m looking for possibility to open it in standard viewer and hightlight required topic of
Thanks Jeff I've found solution.
Below method doing that - maybe somebody finds it useful. Thanks for help!
public static void ShowHelpByKeyword(Control sourceControl, string helpFile, string parameter) { Help.ShowHelp(sourceControl, helpFile, HelpNavigator.KeywordIndex, parameter); }