I want to convert a help window file (hlp or rtf format) to a HTML file.
Do anybody know how to do this ?
Printable View
I want to convert a help window file (hlp or rtf format) to a HTML file.
Do anybody know how to do this ?
My suggestion would be to write your own class (then post it on Codeguru ;). I don't know if you've ever looked at an RTF source before, but like HTML, it's a system of tags. In your class, you could do text searches for tags, then convert them to HTML. For example, if you find /i in the RTF code, change it to <i>. This may not have been exactly the answer that you were looking for, but I hope it helps.