How to link help with a DLL?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I haven't stumbled across how to do this in VB.Net.

VB6 had the HelpContextID to associate a help topic with a specific method.

All the .Net discussions are related to applications with visible interfaces and associating help with controls. In a DLL I need to associate help with a method. How to do this in VB.Net?
 
In the method, put the following code:

Help.ShowHelp(Me, HelpFilePathAndName, HelpNavigator.Topic, HelpTopic)

or

Help.ShowHelp(Me, HelpFilePathAndName, HelpNavigator.Find)

or

Help.ShowHelp(Me, HelpFilePathAndName, HelpNavigator.TableOfConents)

or

Help.ShowHelp(Me, HelpFilePathAndName, HelpNavigator.Index)

Hope that "Helps"
--
Marc Butenko
(e-mail address removed)


Steve S said:
I haven't stumbled across how to do this in VB.Net.

VB6 had the HelpContextID to associate a help topic with a specific method.

All the .Net discussions are related to applications with visible
interfaces and associating help with controls. In a DLL I need to associate
help with a method. How to do this in VB.Net?
 
Back
Top