CString str, str2;
   int n;
   for (int i=0;i < pmyComboBox->GetCount();i++)
   {
      pmyComboBox->GetLBText( i, str );
// use str here
   }
如果要得到当前选中的,先用GetCurSel取得选中索引,再用GetLBText取得字符串。