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
Printable View
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
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]
thats very simple, just one line of code, do this in text1_change:
Text1.SelStart = Len(Text1.Text)