Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

List all topics from a CHM file

I am trying to get a CHM file to open to a specific topic using C#.

I have tried using

Help.ShowHelp(this, path, HelpNavigator.Topic, "TopicTitle");

but it doesn't find the page. I must not be keying in the topic title correctly. Is there a way that I can programatically retrieve all of the topics from a CHM file so that I can see what they are?

like image 926
PICyourBrain Avatar asked Feb 16 '10 20:02

PICyourBrain


2 Answers

No, the HtmlHelp API function is far too primitive to support enumerating topics. You could use the 7-zip file manager to look inside the .chm file. Right-click the file and choose "Open Inside". Or use the help authoring tool that was used.

like image 107
Hans Passant Avatar answered Sep 20 '22 09:09

Hans Passant


If you open a CHM file, and right click on a help page, you can choose the Properties command.
In the middle of the Properties page there is a property called: Address (URL).
The end of the URL contains the topic string used to open the help file to the correct page.

Here is an example: mk:@MSITStore:C:\Program%20Files\Sisulizer%202010\Sisulizer.chm::/OutputFiles.htm

If the URL is too long to see the topic at the end, you can select the address with your mouse and scroll to the end.

Here is a screen shot.

enter image description here

like image 32
Zamboni Avatar answered Sep 23 '22 09:09

Zamboni