当前位置: 代码迷 >> VC >> 菜鸟:c++中,怎么让新建的应用程序的首窗体改变
  详细解决方案

菜鸟:c++中,怎么让新建的应用程序的首窗体改变

热度:3503   发布时间:2013-02-25 00:00:00.0
初学者: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;
}
------解决方案--------------------------------------------------------

------解决方案--------------------------------------------------------
探讨
引用:
那就先创建你这个窗口就好了。


我新建了一个c++的应用程序,这个程序默认的是一个主窗体比如TestForm窗体,此时,程序运行时显示的首窗体是TestForm,然后,我又在程序项目中新加了一个窗体,我想让程序一运行,就执行我刚加的这个新窗体,而不是TestForm,要怎么做?
  相关解决方案