To insert a new line in a TextBox, first make sure you have the MultiLine property of the TextBox set to True. Then use \r\n (carriage return and new line), as in the following example:
TextBox1.Text = "First line\r\nSecond line";
To insert a new line in a TextBox, first make sure you have the MultiLine property of the TextBox set to True. Then use \r\n (carriage return and new line), as in the following example:
TextBox1.Text = "First line\r\nSecond line";