PRB: Child CPropertySheet Hangs If Focus Is Switched

Last reviewed: June 26, 1997
Article ID: Q149501
The information in this article applies to:
  • The Microsoft Foundation Classes (MFC) included with: - Microsoft Visual C++, 32-bit Edition, version 4.0

SYMPTOMS

If a modeless CPropertySheet is a child of a CDialog or another CPropertySheet, the program will hang in the following situations:

  • The focus is switched back to a PropertyPage that previously had the focus.
  • The focus is placed on a control on a PropertyPage, and then the focus is switched to another window (for example, Program Manager).
  • The focus is on a control on a PropertyPage and the PropertySheet is closed.

The program hangs because the child CPropertySheet continuously receives a WM_GETDLGCODE message.

CAUSE

By default, CPropertyPages have a WS_EX_CONTROLPARENT style. However, CPropertySheets do not have this style. This style allows a user to press the TAB key to move from a control inside the page to one in the sheet.

When the focus is switched from the CPropertyPage, code that handles default command buttons loops through all the controls in the pages and the sheet. Cycling through controls is done using GetNextDlgTabItem(). The loop cycles through controls in the page in the child CPropertySheet and finds its way to controls in the parent page or parent dialog. At this point, GetNextDlgTabItem() is not able to find controls inside the child CPropertySheet because it doesn't have a WS_EX_CONTROLPARENT style. The loop never ends because it never finds the original control that had the focus.

RESOLUTION

Override OnInitDialog() for the child CPropertySheet, and add the WS_EX_CONTROLPARENT style.

STATUS

This is problem with the implementation of the Property Sheet common control, and not MFC's CPropertySheet wrapper. The problem has been fixed in Windows NT 4.0.

MORE INFORMATION

Sample Code

   // CMySheet is derived from CPropertySheet
   BOOL CMySheet::OnInitDialog()
   {
             ModifyStyleEx (0, WS_EX_CONTROLPARENT);

             return CPropertySheet::OnInitDialog();
   }

   /* Compile options needed: default
   */


Additional query words: WS_CHILD Property Sheet lock freeze Property page
modal
Keywords : kbprg MfcUI
Technology : kbMfc
Version : 4.0
Platform : NT WINDOWS
Issue type : kbprb


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: June 26, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.