I'm working on a project in vb.net 2010 that has 3 RichTextBoxes. Two of the RichTextBoxes can be loaded with text from text files. How do I take the multiple lines of text from each RichTextBox and combine them into the 3rd RichTextBox.
For example, if 2 of the RichTextBoxes contain the following lines of text:
(RichTextBox1)
Monday
Tuesday
Wednesday
(RichTextBox2)
Jan
Feb
Mar
I want the 3rd RichTextBox to show following result:
(RichTextBox3)
MondayJan
TuesdayFeb
WednesdayMar