M
Mullai
Hi ,
My program gives an error message like this
Debug Assertion Failed!
program:................
File: wincore.cpp
Line: 958
Please can anyone help me out in this issue. I have to solve this bug
immediately in my project.
The line 958 is as follows in wincore.cpp
When I am trying to close my window created CFrameWnd class by calling
DestroyWindow() this assertion has been asserted.
BOOL CWnd:estroyWindow()
{
if (m_hWnd == NULL)
return FALSE;
CHandleMap* pMap = afxMapHWND(); ///// line 958/////
ASSERT(pMap != NULL);
CWnd* pWnd = (CWnd*)pMap->LookupPermanent(m_hWnd);
Thanks
Mullai
My program gives an error message like this
Debug Assertion Failed!
program:................
File: wincore.cpp
Line: 958
Please can anyone help me out in this issue. I have to solve this bug
immediately in my project.
The line 958 is as follows in wincore.cpp
When I am trying to close my window created CFrameWnd class by calling
DestroyWindow() this assertion has been asserted.
BOOL CWnd:estroyWindow()
{
if (m_hWnd == NULL)
return FALSE;
CHandleMap* pMap = afxMapHWND(); ///// line 958/////
ASSERT(pMap != NULL);
CWnd* pWnd = (CWnd*)pMap->LookupPermanent(m_hWnd);
Thanks
Mullai