How can i let my textbox autoscroll to the bottom when a new text is inserted through code?
text1.selectionstart = text1.textlength
doesnt seem to work
Printable View
How can i let my textbox autoscroll to the bottom when a new text is inserted through code?
text1.selectionstart = text1.textlength
doesnt seem to work
Got it nevermind
So how do you do it then? What you suggested originally used to work in VB6. Has it changed?
textbox1.focus
textbox1.ScrollToCaret()
it needs to have focus to work... got stuck on that one :S
:wave: