OK, but are you saving it as richtext. It sounds like you are just appending an "rtf" extension, but it is still being saved in text format. For example when you saving your file are doing something like:
RichTextBox1.SaveFile("C:\MyFile.rtf", richTextBoxStreamType.RichText)
Create a file in notepad and save it, then open it in Word. I am sure you will see the same settings (font Courier New, size 10) as the file you are trying to create in your program.
Let me know if I am wrong and I will try to think of something else.
J
|