MDI 프로젝트에서 프로그램 실행시 빈 자식창 안뜨게 하기 DarkKaiser, 2007년 7월 1일2023년 9월 5일 /* Parse command line for standard shell commands, DDE, file open */ CCommandLineInfo cmdInfo; ParseCommandLine(cmdInfo); /* 프로그램 시작시 자식창이 바로 오픈되지 않도록 한다. */ cmdInfo.m_nShellCommand = cmdInfo.FileNothing; /* Dispatch commands specified on the command line */ if (!ProcessShellCommand(cmdInfo)) return FALSE; Continue Reading