// 타이틀바를 사용하지 않으면 전체 테두리도 사용하지 않게된다.
long style = ::GetWindowLong( this->m_hWnd, GWL_STYLE ) ;
style &= ~WS_CAPTION ;
::SetWindowLong( this->m_hWnd, GWL_STYLE, style ) ;
long style = ::GetWindowLong( this->m_hWnd, GWL_STYLE ) ;
style &= ~WS_CAPTION ;
::SetWindowLong( this->m_hWnd, GWL_STYLE, style ) ;
'Programming > MFC' 카테고리의 다른 글
NTDDI_VERSION에 의한 전처리기 문제 (0) | 2009.06.10 |
---|---|
[DOM with C/C++] 00. MSXML 4.0 SDK 설치하기 (0) | 2008.06.18 |
win32 dll (0) | 2008.05.28 |
LNK2019: "wchar_t * __stdcall _com_util::ConvertStringToBSTR(char const *)" (0) | 2008.05.17 |
DDK 설치 및 Visual Studio 에서 컴파일하기 (0) | 2008.05.15 |