VC开发实战1200例中第334实例中双击列表图标,运行对话框资源程序时报错
发表在C语言图书答疑
2011-10-11
是否精华
是
否
版块置顶:
是
否
VC开发实战1200例中第334实例,在双击列表消息中加入运行对话框资源程序时,当关闭对话框后程序报错。
错误代码:Debug Assertion Failed!
File:wincoe.cpp
Line:875
void CAaaaaDlg::OnItemDouble(const CListCtrl *pListCtrl, int nIndex)
{
if(pListCtrl)
{
if(nIndex != -1)
{
CString str = pListCtrl->GetItemText(nIndex,0);
//AfxMessageBox("欢迎进入"+str+"管理",0,0); //原来代码
Cdlg1 m_dlg1; //新加代码
m_dlg1.DoModal(); //新加代码
}
}
}
错误代码:Debug Assertion Failed!
File:wincoe.cpp
Line:875
void CAaaaaDlg::OnItemDouble(const CListCtrl *pListCtrl, int nIndex)
{
if(pListCtrl)
{
if(nIndex != -1)
{
CString str = pListCtrl->GetItemText(nIndex,0);
//AfxMessageBox("欢迎进入"+str+"管理",0,0); //原来代码
Cdlg1 m_dlg1; //新加代码
m_dlg1.DoModal(); //新加代码
}
}
}