This article focuses on how to use Microsoft's new Help in c++builder6.0 and previous versions: CHM format help files, for how to make CHM format help, and how to get help file making tools, this article will only be a stroke, Give an official link or recommend other good tutorials in this area and don't repeat them.
CHM format Help file making tools
Microsoft's HTML Help Workshop is required to make the CHM format assistance available for download at the Microsoft site:
Http://msdn.microsoft.com/library/default.asp?url=/library/en-us/htmlhelp/html/hwMicrosoftHTMLHelpDownloads.asp
Good CHM helps to make tutorials
Learn how to make a CHM format help document, please refer to:
Html help Sample in delphi[Kafka].chm Author: Kraft [Cgcalf@263.net]
Follow me to learn HTMLHelp workshop[Feng Huijun] [Shijiazhuang Railway Institute].chm Author: Feng Huijun [Shijiazhuang Railway Institute]
For more information about Microsoft Html Help, see:
Microsoft Html help Docs.zipmicrosoft official documentation
It's better to look directly at Microsoft's official documentation online, to MSDN search keywords: HTML Help, to find out a lot about Microsoft HTML helps, with the latest HTML workshop downloads, online API manuals, Make examples of help files, and so on.
Here, I assume that the reader has installed Microsoft HTML Help Workshop and has mastered how to make a CHM format helper file.
The sample help file that is called in the program in this article contains four topics, and the source code for these four topics is as follows:
1001.htm
<title>第一个主题</title>
<body>
<p>第一个主题</p>
</body>
1002.htm
<title>第二个主题</title>
<body>
<p>第二个主题</p>
</body>
1003.htm
<title>第三个主题</title>
<body>
<p>第三个主题</p>
</body>
1004.htm
<title>第四个主题</title>
<body>
<p>第四个主题</p>
</body>