I want to get extended key (i.e. Enter, Shift, Del etc) pressed in the EditBox. I have added
WM_KEYUP event for that but that event is not called. I don't know why? I don't want to create sub-class of
Edit. Can anybody let me know what can be the problem?
My method is:
void CTest_WinDlg::OnKeyUp(UINT nChar, UINT nRepCnt, UINT nFlags)
{
// TODO: Add your message handler code here and/or call default
MessageBox("Key up called.....");
CDialog::OnKeyUp(nChar, nRepCnt, nFlags);
}