Click here to Skip to main content
15,911,848 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Please somebody can help me........ i want to convert a chm file in rtf format by code of c# how can i do that ?
Posted

1 solution

There are so many CHM to RTF file convertors available as open source, including google's readone http://code.google.com/p/readone/[^]

You can write C# code to invoke this tool using command execution. .NET SDK contains System.Diagnostics, which provides types to help including redirection of standard input/output/error.

System.Diagnostics.ProcessStartInfo si = new System.Diagnostics.ProcessStartInfo("googleread.exe sourcefile destfile"); 
 
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