How would I add multilines in a text box with code, I have multilines enabled.
Example
Text1.Text = "1,2,3"
How can I make it display on the text box
1
2
3
Printable View
How would I add multilines in a text box with code, I have multilines enabled.
Example
Text1.Text = "1,2,3"
How can I make it display on the text box
1
2
3
Like this.
VB Code:
Text1.Text = "1" & VBCRLF & "2" & VBCRLF & "3"
Thanks again.
Or you can use vbNewLine which is a platform dependent constant.