| View previous topic :: View next topic |
| Author |
Message |
Seffyroff Newbie

Joined: 08 Apr 2002 Posts: 15
|
Posted: Mon Apr 08, 2002 11:00 am Post subject: Auto scroll update on a list box |
|
|
| i am using a list box as an output window. Is there any way to make it scroll with the updated messages automatically? at the moment when the number of messages exceeds the length of the list box they continue below the bottom of the box, and you have to manually drag the scrollbar down to see whats going on. Can it scroll down to the bottom of the box automatically somehow? |
|
| Back to top |
|
 |
LiquidCode Moderator Team
Joined: 05 Dec 2000 Posts: 1753 Location: Space and Time
|
Posted: Mon Apr 08, 2002 12:20 pm Post subject: |
|
|
You should be able to focus on the list box and then seek
the last item number and I think it will scroll to that number.
Example:
Dialog focus,List1
If @greater(@count(List1),0)
list seek,list1,@pred(@count(List1))
end
That should work. _________________ Chris
Http://theblindhouse.com |
|
| Back to top |
|
 |
|