Tech
Forums
Jobs
Books
Events
Videos
Live
More
Interviews
Certification
Training
Career
Members
News
Blogs
Contribute
An Article
A Blog
A Video
An Ebook
An Interview Question
Register
Login
5
Answers
How to auto scroll to the bottom of a multiline TextBox in C# ?
Esha Rithik
12y
9.8k
1
Reply
private void textBox1_TextChanged(object sender, EventArgs e)
{
textBox1.SelectionStart = textBox1.Text.Length;
textBox1.ScrollToCaret();
textBox1.Refresh();
}
I prepared this code it's not working
Post
Reset
Cancel
Answers (
5
)
Next Recommended Forum
Need Code For The Currency Converter
3tire with using storedprocedure