Nested OLE Objects Are Destroyed When Parents Are Destroyed

Last reviewed: October 30, 1995
Article ID: Q129837
The information in this article applies to:
  • Standard, Professional, and Enterprise Editions of Microsoft Visual Basic, 16-bit and 32-bit, for Windows, version 4.0

SUMMARY

When you have OLE objects that create OLE objects, these nested objects are destroyed (set equal to Nothing) when the parent object that created them is destroyed.

MORE INFORMATION

Visual Basic releases all second-level objects (objects created by objects) when the top level class is destroyed. This is essentially the same behavior as an object variable going out of scope.

For example, assume the following object hierarchy:

Two classes:

   Class CTopLevel
   Class CSecondLevel

Class CTopLevel has the object members.
   Public ChildObject As CSecondLevel
   Public ParentString As String

Class CSecondLevel has the object member.
   Public ChildString As String

In the Initialize event of CTopLevel, you set the ChildObject:

   Private Sub CTopLevel_Initialize ()
      Set ChildObject = New CSecondLevel
      ChildObject.ChildString = "I'm a child object."
   End Sub

If the CTopLevel class is created and goes out of scope after the End Sub in the following code:

   Private Sub Form_Click ()
      Dim ParentObject As New CTopLevel
      ParentObject.ParentString = "I'm a parent object."
   End Sub

a CSecondLevel object (ChildObject) is explicitly instantiated in the CTopLevel_Initialize event, but implicitly destroyed when ParentObject goes out of scope at the end of the Form_Click Sub procedure.

For objects that have not been destroyed when a Visual Basic application shuts down, Visual Basic does a two-pass cleanup on outstanding objects. Pass one releases all module level and static object references (classes and objects). Pass two releases the objects themselves. This allows parent and child objects to both shut down even though they may have module-level references to each other. Essentially, Visual Basic cleans up after itself very well.


Additional reference words: 4.00 vb4win vb4all
KBCategory: kbprg kbole
KBSubcategory: IAPOLE PrgOther


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 30, 1995
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.