void CWnd::SetWindowText(LPCTSTR lpszString)
ASSERT(::IsWindow(m_hWnd));
Debug Assertion Failed
原因:
ID和Resource中的控件没有关联起来,导致运行的时候,发现hWnd没有相应的对象,没有实例化,hWnd是NULL
void CWnd::SetWindowText(LPCTSTR lpszString) ASSERT(::IsWindow(m_hWnd)); Debug Assertion Failed
原文地址:http://www.cnblogs.com/tiancun/p/3756581.html