A Solution for VB HelpContextId Equivalent in VB.NET (This Works)

ruskineo

Newcomer
Joined
Jun 11, 2003
Messages
1
Use the html file name instead of the HelpContextID Index

In Form Load Event

HelpSys.HelpNamespace = "c:\help.chm"
HelpSys.SetHelpKeyword(Me, "main_menu.htm")
HelpSys.SetHelpNavigator(Me, System.Windows.Forms.HelpNavigator.Topic)
 
Back
Top