Click here to Skip to main content
15,892,005 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How to decompile chm file using mvc 3
Posted
Comments
[no name] 28-Nov-13 6:00am    
He given solution for windows show help(System.Windows.Forms)
Am want to decomplie file in browser. before it am want to open chm file in browser.

1 solution

Have you seen this: Decompiling a Help File[^]?

Quote:
The decompile command is part of the HTML Help executable program (Hh.exe)


Here you'll find instructions: Open CHM (help file) in C#[^]

Quote:
Decompiling a CHM file

Is as easy as executing below command in the command prompt.

C#
hh.exe -decompile <target-folder-for-decompiled-content> <source-chm-file></source-chm-file></target-folder-for-decompiled-content>


For Example:

C#
hh.exe -decomplie C:\foo\helpchmextracted help.chm


After executing the above command you should find the decompiled content in the C:\foo\helpchmextracted folder.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900