-, . , , .
, , EnsureVisible(). , . EnsureVisible() . , , .
( ):
void CDlg::SetTopIndex(int top)
{
int bottom = min(top + m_List.GetCountPerPage(), m_List.GetItemCount() - 1);
m_List.SetRedraw(FALSE);
m_List.EnsureVisible(bottom, TRUE);
m_List.EnsureVisible(top, FALSE);
m_List.SetRedraw(TRUE);
}