arm被收购:wincore???

来源:百度文库 编辑:高校问答 时间:2024/05/02 23:21:38
程序出错,我用mfc做出的对话框,一关闭就会弹出:

Debug Assertion Failed!

Program:......vc++\\Debug\\sender.exe

File:wincore.cpp

Line:980

打开wincore后,
if (pWnd != NULL)
{
// Should have been detached by OnNcDestroy
#ifdef _DEBUG

ASSERT(pMap->LookupPermanent(hWndOrig) == NULL);///// 980行

#endif
}

else
{
#ifdef _DEBUG
ASSERT(m_hWnd == hWndOrig);
#endif
// Detach after DestroyWindow called just in case
Detach();
}

wincore.cpp不是提供的源代码吗?(我运行其他的都没有错的)

我学VC++不长时间,对调试很生疏,没弄出来