i'm just wondering how i could save my RTF string somewhere... i need to show my rtf string but in its original format, including the tags etc..


thanks.

TextBox tb = new TextBox();
            tb.Text = richTextBox2.Rtf;
            tb.SelectAll();
            tb.Copy();

Will copy the code with formatting information to the clipboard, paste into word, and you will get the RTF String with formatting information.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.