Home
Search
 
What's New
Index
Books
Links
Q & A
Newsletter
Banners
 
Feedback
Tip Jar
 
 
 
 
500MB 27GB Web Hosting - $9.95/Month
 
 
 
 
 
Old Pages
 
Old Index
Site Map
What's New
 
Books
How To
Tips & Tricks
Tutorials
Stories
Performance
Essays
Links
Q & A
New in VB6
Free Stuff
Pictures
 
 
 
TitleScroll a TextBox to show new text
Keywordsscroll, scroll text, TextBox
CategoriesControls
 
Use Text1.SelStart = Len(Text1.Text).
 
Private Sub Command1_Click()
Static count As Integer
Dim i As Integer
Dim txt As String

    For i = 1 To 5
        count = count + 1
        txt = txt & "Line" & Str$(count) & vbCrLf
    Next i
    Text1 = Text1 & txt
    
End Sub

Private Sub Text1_Change()
    Text1.SelStart = Len(Text1.Text)
End Sub
 
Formatted by Neil Crosby
 
 
Copyright © 1997-2003 Rocky Mountain Computer Consulting, Inc.   All rights reserved.
  Updated