VS2008中CComboBox控件的使用问题
在使用vs2008的下拉列表控件时出现一个问题:目的是添加内容到列表
部分代码如下:
CComboBox m_ComYear; //声明一个变量
然后在 OnInitDialog() 函数中:
BOOL CTestLOGIN::OnInitDialog()
{
CString str;
for (int i = 0; i < 20; i++)
{
str.Format("item string %d", i);
m_ComYear.AddString(str); //运行到这里之后就出错
}
CDialog::OnInitDialog();
// TODO: 在此添加额外的初始化
return TRUE; // return TRUE unless you set the focus to a control
// 异常: OCX 属性页应返回 FALSE
}
在VC中是这样做的 但在VS中就不支持 查了MSDB,依然让人没有头绪。
请给位大虾帮想想方法,谢谢!
(只有 20分了 全给)