Connecting Tech Pros Worldwide Forums | Help | Site Map

How to link help with a DLL?

Steve S
Guest
 
Posts: n/a
#1: Nov 20 '05
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?

Marc Butenko
Guest
 
Posts: n/a
#2: Nov 20 '05

re: How to link help with a DLL?


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
mbutenko@bresnan.net


"Steve S" <SteveS@nospam.nospam> wrote in message
news:AA09C09E-4C8D-463F-A238-1F15CE69C40D@microsoft.com...[color=blue]
> I haven't stumbled across how to do this in VB.Net.
>
> VB6 had the HelpContextID to associate a help topic with a specific[/color]
method.[color=blue]
>
> All the .Net discussions are related to applications with visible[/color]
interfaces and associating help with controls. In a DLL I need to associate
help with a method. How to do this in VB.Net?


Closed Thread