Link to home
Start Free TrialLog in
Avatar of mortenmo
mortenmo

asked on

Scrolling TRichEdit and TListBox

I want to scroll RichEdit and TListBox components automaticly to the bottom when something is added..
How do I do that?
ASKER CERTIFIED SOLUTION
Avatar of erajoj
erajoj
Flag of Sweden image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
For the listbox, you can also use this way....

Listbox1.ItemIndex := Lo(listbox1.Items.count - 1);

Hope this helps a bit!

Regards,
Viktor Ivanov
Avatar of mortenmo
mortenmo

ASKER

Thanks ;)