Call CHM content specific
-
Depending on the userControl currently loaded, I want to capture the F1 and open up the help file to the section associated with that control. I have the F1 captured and opening the help file to the main screen. Here is my current code:
//initialize string HelpFileName = Application.StartupPath + @"\Help\PC3_Setup.chm"; helpProvider1.HelpNamespace = HelpFileName; //call (from function either F1 or pressed help button) Help.ShowHelp(this, helpProvider1.HelpNamespace);
I do not want a tool tip or a pop up, I actually want to jump to the section of the help that is being worked on. Thanks in advance... ***************** "We need to apply 21st-century information technology to the health care field. We need to have our medical records put on the I.T." —GW -
Depending on the userControl currently loaded, I want to capture the F1 and open up the help file to the section associated with that control. I have the F1 captured and opening the help file to the main screen. Here is my current code:
//initialize string HelpFileName = Application.StartupPath + @"\Help\PC3_Setup.chm"; helpProvider1.HelpNamespace = HelpFileName; //call (from function either F1 or pressed help button) Help.ShowHelp(this, helpProvider1.HelpNamespace);
I do not want a tool tip or a pop up, I actually want to jump to the section of the help that is being worked on. Thanks in advance... ***************** "We need to apply 21st-century information technology to the health care field. We need to have our medical records put on the I.T." —GWHere is the answer in case it comes up in the future.
Help.ShowHelp(this, helpProvider1.HelpNamespace, HelpNavigator.Topic, @"whateverthishappenstobe.html");
***************** "We need to apply 21st-century information technology to the health care field. We need to have our medical records put on the I.T." —GW