How in my code (Delphi) to make CHM files from a bunch of HTML (with linked image files)? Details needed, thanks!

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

Maybe there are libs/components to do that. Personnaly, I made it myself as it is quite easy.

Your application should

  • list all files to include
  • Create HHC + HHP + HHK files content-
  • call command line hhc.exe with HHP parameter

As an example, have a look to DelphiCodeToDoc CHM generator.
Read uDocGenCHM_Tools.pas and uDocGeneratorChm.pas in svn repository of my project (too large to post here!). https://dephicodetodoc.svn.sourceforge.net/svnroot/dephicodetodoc/trunk/DelphiCodeToDoc/Source/Generator/Chm/

link|improve this answer
Thank you, I will check it out, with sample code it'll be great. – Edwin Yip Jan 26 '11 at 5:00
I accept this answer because it provides example codes in Delphi. But other answers are great too! Thank you guys! – Edwin Yip Jan 29 '11 at 4:53
feedback

The normal way to do this is to use hhc from Microsoft's HTML Help Workshop to build a help project, specified in a .hhp file. You can write the .hpp file yourself, and all its auxiliary files. Or, more commonly, you can use a 3rd party help authoring tool of which there are many.

I don't see where Delphi comes into the building of the .chm file, but if I've missed something then please update your question to add more details.

link|improve this answer
Documentation generation tools? – Marco van de Voort Jan 24 '11 at 11:28
@Marco I'm sorry, I don't follow your comment. – David Heffernan Jan 24 '11 at 11:29
Documentation tools written in Delphi are a valid application for a CHM generating library. I know because we did it because of that :) (in reply to your "don't see where Delphi comes into..") – Marco van de Voort Jan 24 '11 at 11:54
@Marco I still don't understand! I must be particularly slow today. – David Heffernan Jan 24 '11 at 11:57
@Marco OK, I think you mean that the OP may want to write his/her own help authoring tool and use Delphi code to generate the .chm file. And that's the crux of your answer. If it were me, I'd be inclined to shell out to hhc as do most of the professional packages, but that's obviously a personal preference. – David Heffernan Jan 24 '11 at 12:22
show 3 more comments
feedback

Free Pascal includes a CHM read/write library (without dependancies), and SVN versions also contain a basic commandline CHM compiler. The license is the same as the rest of FPC's Library, LGPL with static linking exception, so fine for commercial use.

I think it should be fairly easy to port to Delphi.

The somewhat outdate package page for this package is

http://wiki.freepascal.org/chm

The package was originally developed for FPC's library documentation tool fpdoc. (Documentation is generated nightly in some cases, and all FPC/Lazarus' servers are Unix)

link|improve this answer
Some examples are at stack.nl/~marcov/doc-chm.zip (+/-10MB) – Marco van de Voort Jan 25 '11 at 7:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.