主题:帮忙看下这个VC的列表框控件有什么错误??
void CListDlg::OnAdd()
{
// TODO: Add your control notification handler code here
UpdateData();
if (m_edit.IsEmpty())
{
MessageBox("请输入数值!");
return;
}
int index;
index=m_list.AddString(m_edit);
m_list.SetItemDataPtr(index,new CString(m_edit));
}
就是想在编辑框里输入一个数值,添加到列表框里。
m_list 是列表框关联的成员变量,
m_edit 是编辑框关联的成员变量,
{
// TODO: Add your control notification handler code here
UpdateData();
if (m_edit.IsEmpty())
{
MessageBox("请输入数值!");
return;
}
int index;
index=m_list.AddString(m_edit);
m_list.SetItemDataPtr(index,new CString(m_edit));
}
就是想在编辑框里输入一个数值,添加到列表框里。
m_list 是列表框关联的成员变量,
m_edit 是编辑框关联的成员变量,