CFrameWnd Objects Can Destroy Themselves

Last reviewed: October 10, 1997
Article ID: Q88557
7.00 | 1.00 1.50 1.51 1.52 | 1.00 2.00 2.10 4.00
MS-DOS | WINDOWS             | WINDOWS NT
kbprg

The information in this article applies to:

  • The Microsoft Foundation Classes (MFC) included with:

        - Microsoft C/C++ version 7.0
        - Microsoft Visual C++ for Windows, versions 1.0, 1.5, 1.51, and 1.52
        - Microsoft Visual C++ 32-bit Edition, versions 1.0, 2.0, 2.1, and 4.0
    

SUMMARY

Objects derived from the CFrameWnd class destroy themselves automatically when the Window that is associated with the object processes the WM_NCDESTROY message. Because objects derived from CFrameWnd classes destroy themselves, it is recommended that applications use the "new" operator to create new instances of this class on the heap.

MORE INFORMATION

Objects derived from CFrameWnd are designed to "clean up" after themselves. The CFrameWnd class overloads the OnNcDestroy() member function that makes a call to the PostNcDestroy() member function, which in turn does a "delete this."

CMDIFrameWnd and CMDIChildWnd, which are derived from CFrameWnd, exhibit identical behavior.

The OnNcDestroy() function is called when the window receives the WM_NCDESTROY message. This is the last message a window receives. As a result, CFrameWnd objects should be created on the heap using the "new" operator, and should never be explicitly deleted by the application. If the application needs to destroy the object, it should use the DestroyWindow() member function, which destroys both the window and its CFrameWnd object.

In general, CFrameWnd objects should not be used as local variables in functions or as embedded objects in other classes. Doing so may cause the object's destructor to be called twice: once when the user closes the window, and once when the function containing the local variable goes out of scope or when the object containing the embedded CFrameWnd object is deleted. Attempting to delete the object more than once may cause an unrecoverable application error (UAE).

You can create a CFrameWnd-derived object on the stack or as a static object if the application overrides the PostNcDestroy() function for the derived class. PostNcDestroy() is a virtual member function of the CWnd class that is called by the OnNcDestroy() function. The overridden PostNcDestroy() function for the derived class should do nothing, rather than "delete this." This prevents the object from being destroyed twice.


Additional reference words: kbinf 7.00 1.00 1.50 2.00 2.10 2.50 2.51 2.52
3.00 3.10 4.00
KBCategory: kbprg kbfasttip
KBSubcategory: MfcUI
Keywords : MfcUI kbfasttip kbprg
Technology : kbMfc
Version : 7.00 | 1.00 1.50 1.51 1.52 | 1
Platform : MS-DOS NT WINDOWS


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