Click to See Complete Forum and Search --> : New Llines in a textbox
Wouter
Nov 29th, 1999, 05:03 PM
I have a simple question:
How can I add lines to a textbox. If the textbox already has content, how do I add new lines of content?
Regards
Wouter
Inhumanoid
Nov 29th, 1999, 05:09 PM
Put a textbox on your form and set it's multiline property to true...
Private Sub Form_Activate()
Text1.Text = "This is a line"
Text1.Text = Text1.Text & vbCrLf & "This is a new Line..."
End Sub
[This message has been edited by Inhumanoid (edited 11-30-1999).]
vbforums.com
Copyright Internet.com Inc., All Rights Reserved.