|
|
|
The System.Windows.Forms.Help class encapsulates the HTML Help 1.0 engine and lets you display the index, the search page, or a specific topic in an HTML file in HTML Help format or a compiled help file (.chm) authored with the HTML Help Workshop or some third party tool.
This class exposes two shared methods, and you can't create an instance of this class. The ShowHelpIndex method displays the index of the specified help file, as in: |
(You can also use a URL that uses forward slashes as separators.) The other method, ShowHelp, is overloaded to provide access to different portions of the help document: |
Click here to copy the following block | Help.ShowHelp(Me, "c:\myhelpfile.chm")
Help.ShowHelp(Me, "c:\myhelpfile.chm", HelpNavigator.Index)
Help.ShowHelp(Me, "c:\myhelpfile.chm", HelpNavigator.Find)
Help.ShowHelp(Me, "c:\myhelpfile.chm", "mykeyword")
Help.ShowHelp(Me, "c:\myhelpfile.chm", HelpNavigator.Topic, 123) |
The Help class replaces the Help Common Dialog, which isn't supported any longer.
|
|
|
|
Submitted By :
Nayan Patel
(Member Since : 5/26/2004 12:23:06 PM)
|
|
|
Job Description :
He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting. |
View all (893) submissions by this author
(Birth Date : 7/14/1981 ) |
|
|