GetLBText
void GetLBText( int nIndex, string & str )const
EX1
#include <..\OriginLab\DialogEx.h> #define IDC_COMBO1 1001 void ComboBox_GetLBText_ex1(Dialog& MyDlg) { string strText; ComboBox m_cmbBox = MyDlg.GetItem(IDC_COMBO1); m_cmbBox.GetLBText(m_cmbBox.GetCurSel() ,strText); out_str(strText); }
Control.h