how to display text in new line in a TextBox in Vb.NET?

  • Thread starter Thread starter Guest
  • Start date Start date
how to display text in new line in a TextBox in Vb.NET?

Try (C#):
myTextBox.AppendText("\r\nThis is on a new line.");
myTextBox.Focus();

The new text may not show immediately if the TextBox does not have the
focus.

rossum


The ultimate truth is that there is no ultimate truth
 
Back
Top