Killing the Parent of a Modal Dialog Box

Last reviewed: July 22, 1997
Article ID: Q74474
3.00 3.10 WINDOWS kbprg

The information in this article applies to:

  • Microsoft Windows Software Development Kit (SDK) for Windows versions 3.0 and 3.1

SUMMARY

An application cannot destroy the parent of a modal dialog box. When the modal dialog box ends, control is returned to its parent. If the parent is destroyed, control is given to a nonexistent window and the application crashes.

When a parent window receives the destroy message, it is too late to destroy a child modal dialog box. The destroyed dialog box does not return control until after all the existing messages are processed, including the final destruction of the parent window.

Therefore, it is imperative that all generational parents of a modal dialog box be disabled and have no way of receiving a WM_DESTROY message while the modal dialog box is active.

MORE INFORMATION

This situation does not affect modeless dialog boxes. Therefore, if the design of a system cannot rule out the above problem, use a modeless dialog box instead of a modal dialog box.

Because the Task Manager can kill any program at any time, there is no absolute protection from the parent being closed. The optimal solution is to forgo modal dialog boxes in favor of modeless dialog boxes. When a modeless dialog box is created, it may disable its parental windows.


Additional reference words: 3.00 3.10 wm_close
KBCategory: kbprg
KBSubcategory: UsrDlgs
Keywords : kb16bitonly


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: July 22, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.