I am trying to add a line of text to a TextBox component in VB.net, but I cannot figure out for the life of me how to force a new line. Right now it just adds onto what I ha
First you have to set the MultiLine property of the TextBox to true so that it supports multiple lines.
MultiLine
TextBox
true
Then you just use Environment.NewLine to get the newline character combination.
Environment.NewLine