Add next line of text in textbox?

  • Thread starter Thread starter trint
  • Start date Start date
T

trint

How can I add text to the next line of a textbox without disturbing the
previous line?
Thanks,
Trint
 
Here is the answer:
this.textBox1.AppendText(Environment.NewLine);
this.textBox1.AppendText(e.End.ToShortDateString());
thanks,
Trint
 
Back
Top