注册 登录
编程论坛 VC++/MFC

求助:“for information on how your program can cause an assertion failure,see the

求学的学生 发布于 2013-03-23 22:06, 11978 次点击
求助:“for information on how  your program can cause an assertion failure,see the Visual C++ documentation on asserts“
3 回复
#2
yuccn2013-03-23 22:32
运行时的错误信息吧
#3
yuccn2013-03-23 22:33
只是知道你触发断言了
没有吧代码贴出来,估计没有人能够回答你
#4
天地炫舞2016-01-01 23:40
我用VC6.0中的MFC,添加了一个ListCtrl控件,控件地址是IDC_PATH ,然后给控件添加了一个变量m_wndPath,,这时直接运行没有错误。最后我添加了以下代码,就出现了楼主一样的错误提示,求解决
m_wndPath.DeleteAllItems();//清空
m_wndPath.InsertColumn(0,_T("项目"));//添加列
m_wndPath.InsertColumn(1,_T("所在路径"));
m_wndPath.SetColumnWidth(0, 150);//设置列宽
m_wndPath.SetColumnWidth(1, 350);
m_wndPath.SetRedraw(FALSE);//防止重绘
1