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
I prepared this code it's not working
Nitin GuptaPosted Jun 23, 2012, 4:18 AM
MuthuMari MPosted May 4, 2012, 5:05 AM
pls chk this , i think it might be useful for u.
http://www.aspdotnet-suresh.com/2011/02/how-to-resize-textbox-height.html
thanks.
If this post is useful then mark it as "Accepted Answer"
Esha RithikPosted May 4, 2012, 1:57 AM
But I want to auto scroll up Text in textbox at runtime.
I kept TextBox Readonly property=true.
MuthuMari MPosted May 4, 2012, 1:23 AM
you have to use like this
thanks.
If this post is useful then mark it as "Accepted Answer"
SenthilkumarPosted May 4, 2012, 1:18 AM