CListBox::GetCurSel 
int GetCurSel( ) const;Return ValueThe zero-based index of the currently selected item. It is LB_ERR if no item is currently selected or if the list box is a multiple-selection list box.ResRetrieves the zero-based index of the currently selected item, if any, in a single-selection list box. GetCurSel should not be called for a multiple-selection list box.Example// The pointer to my list box.
extern CListBox* pmyListBox;// Select the next item of the currently selected one.
int nIndex = pmyListBox->GetCurSel();
int nCount = pmyListBox->GetCount();
if ((nIndex != LB_ERR) && (nCount > 1))
{
   if (++nIndex < nCount)
      pmyListBox->SetCurSel(nIndex);
   else
      pmyListBox->SetCurSel(0);
}