Hi
How do you add line brakes to a text box I've all ready tride this
Text1.Text = Text1.Text & Chr(13)
and this
Text1.Text = Text1.Text & Chr(vbKeyReturn)
The Multiline property is set to True. so how do I do this?
Thanks!!!!
Printable View
Hi
How do you add line brakes to a text box I've all ready tride this
Text1.Text = Text1.Text & Chr(13)
and this
Text1.Text = Text1.Text & Chr(vbKeyReturn)
The Multiline property is set to True. so how do I do this?
Thanks!!!!
ORCode:Text1.Text = Text1.Text & vbCrLf
Code:Text1.Text = Text1.Text & vbNewLine
That was fast, Thanks:cool: