Greetings and such,
Can anyone tell me how to catch the keyboard input of up and down arrows in an MFC dialog box?
Keydown doesn't seem to work;

void CRCISDlg::OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags)
{
// TODO: Add your message handler code here and/or call default
AfxMessageBox("On Key Down");
CDialog::OnKeyDown(nChar, nRepCnt, nFlags);
}

This afx message box never pops up...

thanks,
Lyle