初学者:c++中,如何让新建的应用程序的首窗体改变
我新建了一个c++的应用程序,资源里面有一个ABOUT的窗体,我新加了一个窗体,我想让程序一运行,就执行我刚加的这个新窗体,要怎么做?
[解决办法]
那就先创建你这个窗口就好了。
[解决办法]
不大明白lz意思。。
[解决办法]
修改下InitInstance函数
// XXX initialization
BOOL XXXApp::InitInstance()
{
CWinApp::InitInstance();
// Standard initialization
// If you are not using these features and wish to reduce the size
// of your final executable, you should remove from the following
// the specific initialization routines you do not need
// Change the registry key under which our settings are stored
// TODO: You should modify this string to be something appropriate
// such as the name of your company or organization
新加窗体 dlg;
m_pMainWnd = &dlg;
INT_PTR nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
// dismissed with OK
}
else if (nResponse == IDCANCEL)
{
// TODO: Place code here to handle when the dialog is
// dismissed with Cancel
}
// Since the dialog has been closed, return FALSE so that we exit the
// application, rather than start the application's message pump.
return FALSE;
}
[解决办法]
[解决办法]