1
2
3
4
5
6
|
int
i;
CString str;
i=m_cbox.GetCount();
str.Format (
"%d"
,i);
m_end=
"一共有"
+str+
"个数据"
;
UpdateData(FALSE);
|
1
2
3
4
5
6
7
8
9
|
int
i;
CString str;
i=m_cbox.GetCurSel();
str.Format (
"%d"
,i+1);
if
(i==-1)
m_end=
"你什么都没有选"
;
else
m_end=
"你选的是第"
+str+
"项"
;
UpdateData(FALSE);
|
1
2
3
4
5
6
|
if
(m_i<3)
m_cbox.SetCurSel (m_i++);
//m_i为int型变量 用以计数
else
{
m_cbox.SetCurSel (-1);
m_i=0;
}
|
1
2
|
m_cbox.SetEditSel (3,5);
//在编辑框中打入一串数字在按此按钮就能看到效果
//其作用就是选中第3到第5个字符作为热点
|
1
2
3
4
5
6
7
|
m_cbox.GetLBText (2,m_end);
// GetLBText按钮
UpdateData(0);
CString str;
//GetLBTextLen按钮
int
i=m_cbox.GetLBTextLen (2);
str.Format (
"%d"
,i);
m_end=str;
UpdateData(FALSE);
|
1
2
3
|
int
i;
String.Format(
"%10d"
, i);
CComboBox->AddString
|