-
Im making a chat program that sends text to an unabled text box, so the user cant mess the text up. When the text gets to the bottom of the box, the text goes off the bottom, and the box CANT be scrolled. Is there any way of stopping this, or letting the box auto scroll?
Thanx
------------------
jimmy
ICQ:35813919
mail:[email protected]
-
I'm not sure if this will work with a disabled text box, but try this:
Code:
Private Sub myTxt_Change()
myTxt.SelStart = Len(myText.Text) 'AutoScroll
End Sub
------------------
Tom Young, 14 Year Old
[email protected]
ICQ: 15743470
AIM: TomY10
PERL, JavaScript and VB Programmer
-
Thanx mate, nice to see another young programmer around (Im only 16)
I got around the problem by using a list box, But thanx anyway
------------------
jimmy
ICQ:35813919
mail:[email protected]
-