迭代MFC CComboBox的项目

时间:2008-12-19 11:57:08

标签: visual-c++ mfc

我需要遍历CComboBox中的项(字符串)以检查哪个字符串最长。如何获取列表中的每个项目?

1 个答案:

答案 0 :(得分:5)

尝试GetLBTextLen()函数

这是example from MSDN

// Dump all of the items in the combo box.
   CString str, str2;
   int n;
   for (int i=0;i < pmyComboBox->GetCount();i++)
   {
      n = pmyComboBox->GetLBTextLen( i );
      pmyComboBox->GetLBText( i, str.GetBuffer(n) );
      str.ReleaseBuffer();

      str2.Format(_T("item %d: %s\r\n"), i, str.GetBuffer(0));
      afxDump << str2;
   }