Home > Software engineering >  Please expert guidance, why generate success, but not pop-up window, thank you
Please expert guidance, why generate success, but not pop-up window, thank you

Time:12-20

# include

The class MyApp: public CWinApp
{
Virtual BOOL lnitlnstance ()
{
CFrameWnd * pWnd=new CFrameWnd;

PWnd -> Create (NULL, L "hello");

PWnd -> ShowWindow (SW_SHOW);
This -> m_pMainWnd=pWnd;

Return TRUE;


}

};

MyApp theApp;
  • Related