|
-
Feb 11th, 2000, 11:21 PM
#1
Thread Starter
Member
I have my project keeping a log of its actions, but I need it to scroll down as it adds things to the log so you can see the latest entry without having to scroll down manually, how do you do this?
thanx
------------------
Mooose
-
Feb 11th, 2000, 11:55 PM
#2
Frenzied Member
If you are using a ListBox, it'll automaticly add the scrollbars.
To add scrollbars to a TextBox, set the MultiLine = True and Scrollbars = 3 ' Both
Hope it helps.
CyberCarsten
[email protected]
-
Feb 12th, 2000, 02:01 AM
#3
Junior Member
thats very simple, just one line of code, do this in text1_change:
Text1.SelStart = Len(Text1.Text)
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|