Tagged Questions
The onkillfocus tag has no wiki summary.
2
votes
2answers
745 views
OnKillFocus() override in MFC triggering at odd times
I need to know when my Window goes out of input focus, so I overloaded the OnKillFocus() method of the CWnd.
However it doesn't invoke this method when I focus another application (alt+tab), or even ...
0
votes
3answers
164 views
Notify CDialog-Window when selecting another window
I got a dialog-based MFC-Tool that is supposed to show the title of a window of another application in a messagebox when i click on it.
My Problem is that the WM_KILLFOCUS doesn't work here. Maybe I'm ...
0
votes
1answer
750 views
MFC CComboBox OnKillFocus/ShowDropDown after SetCurSel on Windows 7
As you may know a CComboBox (DropDownList style) only selects properly by typing if you don't let it autosort it's content. Here an example of what i mean:
You type A and then B. If it is not on ...