How do i added text in lines to a rich text box.
EG RichTextBox1.Text = "line one line two"
I want to have the text "line one" in the first line and "line two" in the second.
Printable View
How do i added text in lines to a rich text box.
EG RichTextBox1.Text = "line one line two"
I want to have the text "line one" in the first line and "line two" in the second.
Insert
VB Code:
vbCrLf
example please
Try
NateVB Code:
RichTextBox1.Text = "line one" & vbcrlf & "line two"
That what I meant...:D
Nice, thanks for the help