create .chm file using c#

  • Thread starter Thread starter Supriya
  • Start date Start date
S

Supriya

Hi All,
Is there any way to create .chm file programmatically?
Please let me know. Thanks in advance.
Supriya
 
Hello Supriya,

User Microsoft HTML Help SDK http://msdn.microsoft.com/library/default.asp?url=/library/en-us/htmlhelp/html/vsconHH1Start.asp

---
WBR, Michael Nemtsev [.NET/C# MVP].
My blog: http://spaces.live.com/laflour
Team blog: http://devkids.blogspot.com/

"The greatest danger for most of us is not that our aim is too high and we
miss it, but that it is too low and we reach it" (c) Michelangelo

S> Hi All,
S> Is there any way to create .chm file programmatically?
S> Please let me know. Thanks in advance.
S> Supriya
 
Hi Michael,
Thanks for your response. I went through the SDK. They are using HTML
workshop we can create help file.
What i want is by taking two HTML files , compile these into .chm file
programatically.
HTML HELP API provides only to access the existing help file right?
 
Thanks for your response. I went through the SDK. They are using HTML
workshop we can create help file.
What i want is by taking two HTML files , compile these into .chm file
programatically.

HTML Help Workshop contains command line CHM compiler named hhc.exe. You
can call it from your code. You first need to programmatically create
..hhp, .hhc and optionally .hhk files. The hhc.exe takes .hhp as
argument. The syntax of those files is simple, you can observe what HTML
Help Workshop produces.
 
You mean to say creating .hhp,hhc and .hhk files programmatically by using
their format or any other way?
 
Hi
if you have SDK when you search in it
it guide you to softwares that can make a .chm
or if you update your VS automatically setup this software
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Creating chm file using .Net 2
Chm 1
Generating chm file from XML 4
how to show chm file? 2
Integrating with CHM File 2
How to create and use chm-file for online help? 7
NDoc question. 5
HelpTopicID 2

Back
Top