int sw = GetSystemMetrics(SM_CXSCREEN);
int sh = GetSystemMetrics(SM_CXSCREEN);
LONG l_WinStyle = GetWindowLong(this->m_hWnd,GWL_STYLE);
SetWindowLong(this->m_hWnd,GWL_STYLE,(l_WinStyle | WS_POPUP) & ~WS_CAPTION);
::MoveWindow(this->m_hWnd, 0, 0, sw, sh, TRUE);
int sh = GetSystemMetrics(SM_CXSCREEN);
LONG l_WinStyle = GetWindowLong(this->m_hWnd,GWL_STYLE);
SetWindowLong(this->m_hWnd,GWL_STYLE,(l_WinStyle | WS_POPUP) & ~WS_CAPTION);
::MoveWindow(this->m_hWnd, 0, 0, sw, sh, TRUE);