本文介绍了Visual Studio 2010 SP1 MFC,Windows 7:使用复选框模式对话框运行ASSERT问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用MFC编译并链接了一个复选框Modal Dialog,但是使用ASSERT停止了运行:

I built a checkbox Modal Dialog with MFC that compiled and linked, but the run got stopped with an ASSERT:

if (hWndCtrl == NULL)
{
  pSite = m_pDlgWnd->GetOleControlSite(nIDC);
  if (pSite == NULL
  {
    TRACE(traceAppMsg, ...);
    ASSERT(FALSE);
    AfxThrowNotSupportedException();
  }
  ...
}



我不明白如何修复它。在Visual Studio的早期版本中,我从未遇到过这个问题。



我尝试了什么:



我已经完成了代码没有帮助。


I don't understand how to fix it. In previous versions of Visual Studio I have never had this problem.

What I have tried:

I have stepped through the code. No help.

推荐答案


这篇关于Visual Studio 2010 SP1 MFC,Windows 7:使用复选框模式对话框运行ASSERT问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-22 19:00