Scrolling List
-
I am using a List box in my appln... When new items are added the new items are added down. I want the scroll bars to be always posistioned next to the last item being added.. Can any one help me how to achieve this ...
You can easily accomplish this selecting the last added item either with (MFC)
CListBox::SetCurSel
or (plain Win32)LB_SETCURSEL
message. :)If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
-
You can easily accomplish this selecting the last added item either with (MFC)
CListBox::SetCurSel
or (plain Win32)LB_SETCURSEL
message. :)If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.