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
Printable View
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
Put a textbox on your form and set it's multiline property to true...
[This message has been edited by Inhumanoid (edited 11-30-1999).]Code:
Private Sub Form_Activate()
Text1.Text = "This is a line"
Text1.Text = Text1.Text & vbCrLf & "This is a new Line..."
End Sub