Dialog class에서 PreTranslateMessage 오버라이딩하여 재정의 한다.
BOOL CChatDlg::PreTranslateMessage(MSG* pMsg)
{
if ((pMsg->message == WM_KEYDOWN) && (pMsg->wParam == VK_RETURN))  //Enter인 경우
{
return TRUE;
}
if ((pMsg->message == WM_KEYDOWN) && (pMsg->wParam == VK_ESCAPE))  //ESC 인 경우
{
return TRUE;
}
return CDialog::PreTranslateMessage(pMsg);
}
 
:D