|
|
От: |
_NaN_
|
www.elangroup-software.com |
| Дата: | 09.09.08 10:48 | ||
| Оценка: | |||
virtual BOOL PreTranslateMessage(MSG* pMsg);
BOOL CMyDialog::PreTranslateMessage(MSG* pMsg)
{
if (pMsg->message == WM_KEYDOWN)
{
MessageBox(L"Hello",0,MB_OK);
UpdateData(0);
}
return CDialog::PreTranslateMessage(pMsg);
}