A
Arkion
Hello!
How would I make a TextBox control auto-scroll to bottom after calling
AppendText? I have tried various methods but none of them seem to
work. This is already tried:
textBox1.HideSelection = false; // Called from Init method
..
..
textBox1.AppendText(val);
textBox1.Select(control.TextLength, 0);
How would I make a TextBox control auto-scroll to bottom after calling
AppendText? I have tried various methods but none of them seem to
work. This is already tried:
textBox1.HideSelection = false; // Called from Init method
..
..
textBox1.AppendText(val);
textBox1.Select(control.TextLength, 0);