Scroll Textbox

Leeus

Regular
Joined
Dec 23, 2002
Messages
50
With VB.NET how do I scroll my textbox down when new text is added, my methods from VB6 don't seem to work!
 
Try using the AppendText method of the textbox, the caret should scroll down as you add text that way. If there is no existing text there this method will fail.
 
Back
Top