[code]BOOL MyApp::PreTranslateMessage(MSG* pMsg)
{
if(pMsg->message == WM_SYSKEYDOWN &&
pMsg->wParam == VK_F4)
{
return TRUE;
}
}
[/code]
{
if(pMsg->message == WM_SYSKEYDOWN &&
pMsg->wParam == VK_F4)
{
return TRUE;
}
}
[/code]
'Windows > MFC' 카테고리의 다른 글
버츄얼 키값 확인하기 Virtual Key GetKeyState(VK_LCONTROL) (0) | 2013.10.02 |
---|---|
ESC키로부터 Dialog 사라짐을 방지 (0) | 2013.10.02 |
윈도우 크기 알기 GetClientRect (0) | 2013.10.02 |
CView 에서 AnimationGIF 출력하기 (AniGif) (0) | 2013.10.02 |
[CodeProject] AniGif (Animation GIF) (0) | 2013.10.02 |