How to set scroll down a CListBox to the bottom? 
Author Message
 How to set scroll down a CListBox to the bottom?

How to make a CListBox object scroll down to its bottom
every time a new string is added?


Fri, 18 Feb 2005 13:52:46 GMT  
 How to set scroll down a CListBox to the bottom?
try

int nIdx = m_cListBox.AddString((LPCTSTR)strLine);
if(nIdx != LB_ERR)
    m_cLogArea.SetTopIndex(nIdx);

Quote:
>-----Original Message-----
>How to make a CListBox object scroll down to its bottom
>every time a new string is added?
>.



Fri, 18 Feb 2005 22:23:55 GMT  
 
 [ 2 post ] 

 Relevant Pages 

1. How to set a CListBox object scroll to its bottom?

2. Top down/Bottom up s/w design

3. Scrolling a ClistCtrl Window to the Bottom

4. Set the text to the right side of toolbar bottom

5. ClistBox--Vertical Scroll

6. Look, down, down, down

7. Catching scroll or update message in a CListBox

8. CListBox - horizontal scroll bar issue

9. Horizontal scrolling in a CListBox

10. Horizontal scrolling in CListBox

11. CListBox---Horizontal Scroll

12. CListbox scrolling

 

 
Powered by phpBB® Forum Software