这个哪错了??   运行后按键但没反应--
被这个搞死了BOOL CAboutDlg::PreTranslateMessage(MSG* pMsg) 
{
// TODO: Add your specialized code here and/or call the base class
 if(pMsg->message  ==  WM_KEYUP)
     {
 AfxMessageBox( "You urn ");
 if(pMsg-> wParam   ==   VK_TAB) 
 AfxMessageBox( "You   press   the   return ");
       switch(pMsg->wParam)
       {
   case  0x4E:     //表示是方向键中的向下的键            AfxMessageBox( "You   press   the   return ");          break;
       }
 }
return CDialog::PreTranslateMessage(pMsg);
}