-
First, you need to set the TextBox's MultiLine Property to True
Code:
Text1.MultLine = True
Second, in a textbox you need both a Carriage Return & a Line Feed. So, use one of these
Code:
Text1.Text = "First Line" & vbCrLF & "Second Line"
'or
Text1.Text = "First Line" & vbNewLine & "Second Line"
'or
Text1.Text = "First Line" & Chr(13) & Chr(10) & "Second Line"
I use the the Second One myself
-
Didn't Notice your post HeSaidJoe, i was writing mine at the same time (Yes, i takes me 4 Minutes to write a post)
-
<?>
Hey, I don't count times.
Post away and never aplolgize to me for posting below my post, unless of course, you sign my name to it. LOL
:D