-
I need to have a timer continuosly check for the last AddItem of a listbox, scroll down to the last AddItem, and highlight it, for the user to see it.
How the heck would you code that?
<i>All of my attempted coding turns out to be something to laugh at!</i>
-
try
Code:
lst_Box.ListIndex = lst_Box.ListCount - 1
That'll scroll it for you .
-
Why have a timer constantly checking? Can't you find a suitable event that might trigger an update?
-
you should put the perty
***BEEP statement***
in there too... it's cool
-
If the user is adding something, than you can first add whatever and then use the code PRIVATE1 gave to go to the bottom. Or even if you adding something all the time, than you can do the same as well.