Use of the Keyboard's events
C / C++ / MFC
2
Posts
2
Posters
0
Views
1
Watching
-
Hi, Which method I have to use for move from an edit box and another with enter botton? Thanks.:doh:
Hi, for this edit box you have to catch the WM_GETDLGCODE message, telling it that you want DLGC_WANTALLKEYS. In your WM_KEYUP handler you must look if the user pressed the enter key and than act accordingly. In any other case you should do the default action. Regards G. Steudtel