tags:

views:

466

answers:

1

I'm trying to convert XML docs into rtf documents. I can successfully perform xml to pdf conversions, but whenever I attempt to use

RtfWriter.GetInstance or RtfHeaderFooters

I get an error message saying that 'the name rtfwriter does not exist in the current context' - I can't seem to access any of the rtf assemblies

Has anyone encountered similar problems or has a possible solution?

Thanks

A: 

I ran into the same problem. You should use:

RtfWriter2 rtfWriter = RtfWriter2.GetInstance(...);
Ivo Limmen