You want to add a "Event Handler" for the event of pressing a Tab key or Return key?
Not exactly. The event handler would be similar to that second bit of code I include above.
I can include, in my MESSAGE MAP,
ON_WM_KEYDOWN()
and write a handler function..
void CApplView::OnKeyDown (UINT nChar, UINT nRepCnt, UINT nFlags) {...}
That will work to capture a key stroke when the main window has focus. I want it to capture the key stroke when pUserid has the focus. I know I can do this by creating a new class derived from CEdit, but I thought there must be a simpler way.What Compiler of VC are you using?I'm using Visual C++ 6.0