반응형
1. 작업표시줄 숨김 소스코드
BOOL CCommonProgressBarDlg::OnInitDialog()
{
CDialogEx::OnInitDialog();
HWND hWnd = AfxGetMainWnd()->GetSafeHwnd();
long style = GetWindowLong(hWnd, GWL_EXSTYLE);
style &= ~(WS_VISIBLE);
style |= WS_EX_TOOLWINDOW;
style &= ~(WS_EX_APPWINDOW);
::ShowWindow(hWnd, SW_HIDE);
SetWindowLong(hWnd, GWL_EXSTYLE, style);
::ShowWindow(hWnd, SW_SHOW);
return TRUE;
}
2. 결과화면
- 숨기기 전
반응형
'프레임워크 > MFC' 카테고리의 다른 글
[MFC] 현재 실행파일의 경로 가져오기 (GetModuleFileName, _wsplitpath) (0) | 2022.11.23 |
---|---|
[MFC] RC1015 : cannot open include file 'afxres.h' (0) | 2022.11.22 |
[MFC] Progressbar 사용법. (0) | 2022.11.22 |
[MFC] 외부 프로그램 실행 예제 (CreateProcess, ShellExecute) (0) | 2022.07.21 |
[MFC] SQLite3연동하기 예제 포함(DB 생성, DB select) (0) | 2022.07.01 |
댓글