RTF File Merge

  • Thread starter Thread starter Joe Reiss
  • Start date Start date
J

Joe Reiss

Hello,

Using vs2005/C#/SQL 2005

Given two or more RTF Files I would like to merge them. Found one Library
NRTFTree, however I don't see anything in there that will let me accomplish
this.

Anyone know of anything?

Thanks,
Joe
 
There is no such easy thing as a "Merge" method. You will have to
parse the files yourself, but this is a horrible task.
The cheapest would be to use Word automation, throw all your rtf in,
let Word do the merge and save everything back as an rtf file, but I
would not recommend this
as it makes your application depend from the Word executable and using
Word interop is also quite error-prone. Maybe you have to look for a
commercial library,

Cheers,
Joachim
 
This is a Web Application so automation is out. I've been looking for
mostly Free stuff but can't come up with any thing.

thnx,
joe\*
 
Back
Top