Edit paste copy problem
C / C++ / MFC
1
Posts
1
Posters
0
Views
1
Watching
-
Hi, how can i force my CEdit control to react to Ctrl +v and Ctrl+c. It doesnt do it automaticaly. I tried the following but it doesnt work out : dirive OnKeyDown in my class CEditEx if ((::GetKeyState (VK_CONTROL)<0)&&(nChar == 0x63)) { // do something } doesnt work with GetAsyncKeyState too. Any sugestion why? Or there is other method to do this stuff? Thanks