Hi ALL,
Note: System.Text.StringBuilder does not appear to maintain formatting in a RichTextBox.
See this thread for details.>>
http://social.msdn.microsoft.com/Forums/en-US/vbgeneral/thread/2fe8f436-03dd-4de5-b489-564967860388
Use the AppendText method instead.
E.G:
RichTextBox1.AppendText("Your added text here.")
Regards,
John