BOOL CXXXDlg::PreTranslateMessage(MSG
*
pMsg)
... {
if(WM_KEYFIRST <= pMsg->message && pMsg->message <= WM_KEYLAST)
...{
if(pMsg->wParam == VK_RETURN || pMsg->wParam == VK_ESCAPE)
return TRUE;
}
return CDialog::PreTranslateMessage(pMsg);
}
... {
if(WM_KEYFIRST <= pMsg->message && pMsg->message <= WM_KEYLAST)
...{
if(pMsg->wParam == VK_RETURN || pMsg->wParam == VK_ESCAPE)
return TRUE;
}
return CDialog::PreTranslateMessage(pMsg);
}