Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a textbox with the .Multiline property set to true. At regular intervals, I am adding new lines of text to it. I would like the textbox to automatically scroll to the bottom-most entry (the newest one) whenever a new line is added. How do I accomplish this?

share|improve this question
Looked here for the answer, couldn't find it, so when I figured it out, I figured I'd put it up here for future users, or if maybe someone else had a better approach. – GWLlosa May 22 '09 at 14:59

5 Answers

up vote 63 down vote accepted

You can use the following code snippet:

myTextBox.SelectionStart = myTextBox.Text.Length;
myTextBox.ScrollToCaret();

which will automatically scroll to the end.

share|improve this answer
2  
Looked here for the answer, couldn't find it, so when I figured it out, I figured I'd put it up here for future users, or if maybe someone else had a better approach. – GWLlosa May 22 '09 at 14:59
Thanks, It works as my expectation. – Minh Le Jul 10 '09 at 3:25
thanks works well :) – superbDeveloper Oct 16 '12 at 12:58

Try to add the suggested code to the TextChanged event:

private void textBox1_TextChanged(object sender, EventArgs e)
{
  textBox1.SelectionStart = textBox1.Text.Length;
  textBox1.ScrollToCaret();
}
share|improve this answer

At regular intervals, I am adding new lines of text to it. I would like the textbox to automatically scroll to the bottom-most entry (the newest one) whenever a new line is added.

If you use TextBox.AppendText(string text), it will automatically scroll to the end of the newly appended text.

share|improve this answer
This method is much faster and smoother. There is no 'flickering' of the scroll bar (which is more noticeable when making many calls in rapid succession). – TallGuy Apr 11 at 10:22

I needed to add a refresh:

textBox1.SelectionStart = textBox1.Text.Length;
textBox1.ScrollToCaret();
textBox1.Refresh();
share|improve this answer

It seems the interface has changed in .NET 4.0. There is the following method that achieves all of the above. As Tommy Engebretsen suggested, putting it in a TextChanged event handler makes it automatic.

textBox1.ScrollToEnd();
share|improve this answer
1  
Note that that method is in the TextBoxBase class in the System.Windows.Controls.Primitives namespace (PresentationFramework assembly, WPF). This method does not exist and will not work in WinForms, whose TextBox class inherits from TextBoxBase in the System.Windows.Forms namespace (System.Windows.Forms assembly, WinForms). – Bob Feb 15 at 1:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.