Return to Snippet

Revision: 9741
at November 19, 2008 12:17 by pckujawa


Initial Code
// Scroll to end of text box
aTextBox.SelectionStart = aTextBox.TextLength;
aTextBox.ScrollToCaret();

Initial URL
http://bytes.com/forum/thread248500.html

Initial Description
This technique is useful for when you are displaying text back to the user in a GUI and want the most recent text to be displayed at the bottom of the text control, but you want that information to be visible.

Another nice function that works well if you aren’t moving up and down in the text box is the textbox.AppendText function.  It will add the text to the bottom and keep the textbox from going to the top. (Thanks to Charlie Mann for that one.)

Initial Title
Scroll to the bottom of a text box control programmatically

Initial Tags


Initial Language
C#