How can i add a line of text to a multi-line TextBox?
e.g. pseudocode;
textBox1.Clear(); textBox1.Lines.Add(\"1000+\"); textBox1.Lines.Add(\"750-999\
You have to use the AppendText method of the textbox directly. If you try to use the Text property, the textbox will not scroll down as new line are appended.
AppendText
Text
textBox1.AppendText("Hello" + Environment.NewLine);