QUOTE(PsychoCoder @ 10 Nov, 2008 - 07:25 AM)

I would try it this way
vb
"Needs to be on line 1"
RichTextBox2.Text = lines2(line2_1).Trim() + Environment.NewLine
"Needs to be on line 2"
RichTextBox2.Text &= lines2(line2_2).Trim() + Environment.NewLine
Hope that helps

Thank you this is exactly what I needed.
I can't believe that I forgot to put the + before environment.
I did mine a bit differently but you gave me what I needed to make it work
CODE
RichTextBox1.AppendText(lines(line).Trim() + Environment.NewLine)
RichTextBox1.AppendText(lines2(line2_1).Trim())
RichTextBox1.AppendText(lines2(line2_2).Trim() + Environment.NewLine)
RichTextBox1.AppendText(lines3(line3_1).Trim())
RichTextBox1.AppendText(lines3(line3_2).Trim())
RichTextBox1.AppendText(lines3(line3_3).Trim() + Environment.NewLine)
RichTextBox1.AppendText(lines4(line4_1).Trim())
RichTextBox1.AppendText(lines4(line4_2).Trim())
RichTextBox1.AppendText(lines4(line4_3).Trim())
RichTextBox1.AppendText(lines4(line4_4).Trim() + Environment.NewLine)
I have a question for you if you know. As you can see I have multiple generated text on same line in some, do you know how to make it put spaces between them?
Thanks again
-Terra