BOOL CMyDlg::PreTranslateMessage(MSG* pMsg) 
{
// TODO: Add your specialized code here and/or call the base class
if(pMsg->message==WM_KEYDOWN&&pMsg->wParam==VK_RETURN)
{
if(pMsg->hwnd==GetDlgItem(控件的ID)->m_hWnd)
{
UpdateData(TRUE);
Check();

}

return TRUE;

} return CDialog::PreTranslateMessage(pMsg);
}