G
Guest
Could someone point me to a solution
I am appending text to bottom of a textbox and would like the display to scroll to the bottom where the new text is instead of the top of the textbox.
I know the following solution but the issue with this is the FLICKER
Any solution
textBox1.AppendText("This is a test string \n")
textBox1.SelectionStart = textBox1.Text.Length
textBox1.ScrollToCaret()
thank
Abdullah
I am appending text to bottom of a textbox and would like the display to scroll to the bottom where the new text is instead of the top of the textbox.
I know the following solution but the issue with this is the FLICKER
Any solution
textBox1.AppendText("This is a test string \n")
textBox1.SelectionStart = textBox1.Text.Length
textBox1.ScrollToCaret()
thank
Abdullah