CTreeCtrl derived class problem
C / C++ / MFC
1
Posts
1
Posters
0
Views
1
Watching
-
I am writing an C# plugin which contains a subclassed CTreeCtrl( in c++ ). I wrote my own OnKeyDown() function and I'm having a strange (may be normal?) behavior: VK_UP, VK_DOWN, VK_LEFT and VK_RIGHT keys do not enter this function, though other virtual keys do. I checked it out with Spy++ and WM_KEYDOWN messages **are** being sent to my control''s window for every VK. The problem is I wish my control to be navigated with keys (as in Explorer, you now), and somewhat I'm loosing it... I don't know where or how to catch those keys. Any clues? NG