tags:

views:

65

answers:

2

I'm creating a program for new hires where i type in there name and some other info and it spits out a welcome/ new employee info document

I seem to remember there was something along the lines of there being a document object that i could use (similar i guess to stringbuilder)

but i cant find anything on it.

does anyone know if there is such a thing already included in the .net 2 or 3 library?

thanks for any help or hints you can provide

Crash

A: 

Assuming you're just using a text file, you can just use the StringWriter class in the System.IO Namespace.

(One of the constructors of a StringWriter object is StringBuilder)

Joey
Im trying to write a RTF file but string builder wasn't exactly what i wanted. I want to be able to control diffrent fonts sizes and things like bold and italics
Crash893
I've done something similar: I just ended up using an invisible RichTextBox, in which all the formatting and text processing was done. Then just use the SaveFile() method or get the RTF from RichTextBox.RTF.
Joey
A: 

No there is not!

Crash893