Article ID: 230587 - Last Review: September 22, 2003 - Revision: 3.0 PRB: Can't Set Focus to an Edit Control When its Parent Is an Inactive Captioned Child WindowThis article was previously published under Q230587 On This PageSYMPTOMS When an edit control is in an inactive captioned child
window, you cannot set focus to it with the mouse. For example, if you have a
modeless dialog box with the WS_CAPTION and WS_CHILD styles, and it has an edit
control, you cannot set focus to the edit control with the mouse. NOTE: All captioned child windows display an inactive caption bar. CAUSE The default WM_LBUTTONDOWN handler for edit controls will
not set focus to the edit control if its parent is an inactive captioned child
window. This code is implemented as part of the Windows API function,
DefWindowProc(). RESOLUTION There are not many good ways to work around this limitation
because it is Windows itself that is intentionally causing this
behavior. The best way to prevent the problem is to prevent the parent of the edit control from being an inactive captioned child. For the above example, specify the WS_POPUP style for the dialog box instead of WS_CHILD. STATUS This behavior is by design. MORE INFORMATIONSteps to Reproduce Behavior
APPLIES TO
| Article Translations
|

Back to the top
