|
|
TaskBar (작업표시줄) 에 숨기기
등록자 : cpueblo (유광희), 2008-08-14
글수정 | 글삭제
ModifyStyleEx 를 설정합니다
BOOL CTaskBarDlg::OnInitDialog()
{
CDialog::OnInitDialog();
// Set the icon for this dialog. The framework does this automatically
// when the application's main window is not a dialog
SetIcon(m_hIcon, TRUE); // Set big icon
SetIcon(m_hIcon, FALSE); // Set small icon
// TODO: Add extra initialization here
ModifyStyleEx (WS_EX_APPWINDOW, WS_EX_TOOLWINDOW);
return TRUE; // return TRUE unless you set the focus to a control
}
글수정 | 글삭제
http://codesarang.com. mail to cpueblo cpueblo.com
|
|