For a WPF UI application, a CHM Help file needs to be created.
How to create a chm help file?
First create the document in ms word and convert it into chm help file? or any other method?
Please help
Thanks
Ramm
For a WPF UI application, a CHM Help file needs to be created.
How to create a chm help file?
First create the document in ms word and convert it into chm help file? or any other method?
Please help
Thanks
Ramm
Using word to create your help files is one option. To do this you would need to get hold of the HTML Help SDK from Microsoft (free) and then convert your documents to HTML and compile using the HTML Help compiler.
However there are some good integrated tools that could help you greatly speed up this process. One I've heard good things about is HelpScribbler from JGSoft. It's not free but would save timer over doing things manually.
I used Sandcastle Help File Builder (SHFB) to generate the CHM.
To write the content, I followed the guidance and example in the Sandcastle MAML Guide, available on codeplex. This involved me writing doc in a format called "MAML", which is an XML dialect for describing the help files.
It looks like this:
In addition to authoring the content on various pages, you need to specify the outline - how all the pages fit together. Once you get it set up it's pretty easy. Then generating the CHM just requires running SHFB.
Don't be put off by the tagname "developerConceptualContent". There's nothing about the .chm generated that makes it useful only for developers.
The SHFB tool is free.