我收到了一些奇怪的错误,因为Assert Failed
f:\dd\...\include\afxwin1.inl
. 我在谷歌中搜索了一些解决方案,一些解决方案用于评论这一行(m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
在发布模式下评论这一行 ( ) 以使其工作。但是在评论那行之后,我遇到了更多错误。
我采用了一个基于对话框的 MFC 应用程序。当它是一个application.exe
. 我的要求是做到这一点static library
,我将有另一个console application
成为主要application.exe
的,我正在调用InitInstance
它.exe
。一旦它变胖了,
CDialogDlg::CDialogDlg(CWnd* pParent /*=NULL*/)
: CDialogEx(CDialogDlg::IDD, pParent)
{
m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
}
它抛出上述错误。
在我的application.cpp
#include "stdafx.h"
#include "DialogDlg.h"
#include "Dialog.h"
#include "afxwin.h"
#include "Resource.h"
#include <afxinet.h>
CDialogApp theApp;
int _tmain(int argc, _TCHAR* argv[])
{
//CInitApp cpp;
theApp.InitInstance();
return 0;
}
Dialog.cpp
#include "stdafx.h"
#include "Dialog.h"
#include "DialogDlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
// CDialogApp
BEGIN_MESSAGE_MAP(CDialogApp, CWinApp)
ON_COMMAND(ID_HELP, &CWinApp::OnHelp)
END_MESSAGE_MAP()
// CDialogApp construction
CDialogApp::CDialogApp()
{
m_dwRestartManagerSupportFlags = AFX_RESTART_MANAGER_SUPPORT_RESTART;
}
//CDialogApp theApp;// I have commented this code as I am declaring it in mainapplication
BOOL CDialogApp::InitInstance()
{
INITCOMMONCONTROLSEX InitCtrls;
InitCtrls.dwSize = sizeof(InitCtrls);
InitCtrls.dwICC = ICC_WIN95_CLASSES;
InitCommonControlsEx(&InitCtrls);
CWinApp::InitInstance();
AfxEnableControlContainer();
CShellManager *pShellManager = new CShellManager;
//SetRegistryKey(_T("Local AppWizard-Generated Applications"));
CDialogDlg dlg;
m_pMainWnd = &dlg;
INT_PTR nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
}
else if (nResponse == IDCANCEL)
{
}
if (pShellManager != NULL)
{
delete pShellManager;
}
return FALSE;
}
我已经评论CDialogApp theApp;
了行,Dialog.cpp
因为我在调用它mainapplication .exe
时会发生问题CDialogDlg dlg;
。请帮助我如何解决此错误。
以其他方式,可以将基于对话框的应用程序设置为静态库。如果是,那么为什么我会收到此错误。我也尝试过在 Windows 和控制台中制作主要应用程序。请找到屏幕截图以便更好地理解,我在做什么。