Статья MSDN на CListCtrl::GetTopIndex()
содержит пример кода, который выглядит следующим образом:
// Make sure the focus is set to the list view control.
listControl->SetFocus();
// Select all of the items that are completely visible.
int topIndex = listControl->GetTopIndex();
int lastIndex = listControl+ listControl->GetCountPerPage();
//then there's a for-loop for the items in range from topIndex to lastIndex
Почему комментарий настаивает на звонке SetFocus()
?