I'm experimenting with help files and help-providers.
My issue is I cannot display the help file without conflicting with other help-provider code.
helpProvider1.SetShowHelp(btnFont, true);
helpProvider1.SetHelpString(btnFont, "Change the font.");
helpProvider1.HelpNamespace = "helpfile.chm";
The HelpNamespace property takes precedence over the SetHelpString method, but I still want to display these help strings.
Is the only option to use another hotkey?