CMainFrame에서 ClassWizard 로 가상함수 ActivateFrame(int nCmdShow) 추가
void CMainFrame::ActivateFrame(int nCmdShow)
{
/* TODO: Add your specialized code here and/or call the baseclass */
nCmdShow=SW_MAXIMIZE; <-- 코드추가부분.
CFrameWnd::ActivateFrame(nCmdShow);
}
void CMainFrame::ActivateFrame(int nCmdShow)
{
/* TODO: Add your specialized code here and/or call the baseclass */
nCmdShow=SW_MAXIMIZE; <-- 코드추가부분.
CFrameWnd::ActivateFrame(nCmdShow);
}
void CMainFrame::ActivateFrame(int nCmdShow) { /* TODO: Add your specialized code here and/or call the baseclass */ nCmdShow=SW_MAXIMIZE; <-- 코드추가부분. CFrameWnd::ActivateFrame(nCmdShow); }