I use HelpNDoc for providing a chm-file for the context sensitive help in my application.
In this software you define a help-ID and a corresponding help-context.
The help-ID for example maybe "SystemSetup"
and the help-context is 57
.
Now my question:
I can call the help this way:
System.Windows.Forms.Help.ShowHelp(null, @"myhelp.chm", HelpNavigator.TopicId, "57");
and all works well, but can I some how call ShowHelp
with the help-ID ("SystemSetup"
) instead?
I ask this cause the help-context can change, but the help-ID stays always the same.