Single/Multi Document 에서 상단 Caption은 보통 '제목없음 - 프로젝트 이름'으로 나타난다. 이를 해결하기 위해서는 Frame의 Style 설정에서 TITLE을 변경하면 된다. BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs) { if( !CFrameWnd::PreCreateWindow(cs) ) return FALSE; // TODO: Modify the Window class or styles here by modifying // the CREATESTRUCT cs cs.style &= ~(FWS_ADDTOTITLE); cs.lpszName = L"User Application"; return TRUE; } Frame Style에서 FW..