// 콘솔 위치/크기 지정
HWND hwndConsole = ::GetConsoleWindow();
::MoveWindow(hwndConsole, 10, 10, 1024, 768, 1);
// Disable Close Button Only
//EnableMenuItem(GetSystemMenu(GetConsoleWindow(), FALSE), SC_CLOSE, MF_GRAYED); // => 처음에는 diable되지만 메뉴를 열어본 후에는 다시 enable된다.(Windows 7)
//DrawMenuBar(GetConsoleWindow());
// Remove Close Menu and Button
HMENU hmenu = ::GetSystemMenu(hwndConsole, FALSE);
::DeleteMenu(hmenu, SC_CLOSE, MF_BYCOMMAND);
'IT_컴퓨터_코딩_개발' 카테고리의 다른 글
[node.js] Node.js 설치 (Install) (0) | 2015.10.14 |
---|---|
애드몹 iAd 아이애드 iOS 광고 달기 동시에 소스 (0) | 2013.01.04 |
[Python] unix2dos, dos2unix (파이썬 소스) (0) | 2012.12.27 |
유니티(Pro)에서 동영상 플레이하기 (0) | 2012.12.27 |
유니티 윈도우 비활성화되어도 화면 갱신되도록 셋팅하기 (0) | 2012.12.27 |