Nested OLE Objects Are Destroyed When Parents Are DestroyedLast reviewed: October 30, 1995Article ID: Q129837 |
The information in this article applies to:
SUMMARYWhen 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 INFORMATIONVisual 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 CSecondLevelClass CTopLevel has the object members. Public ChildObject As CSecondLevel Public ParentString As StringClass CSecondLevel has the object member. Public ChildString As StringIn 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 SubIf 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 Suba 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
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |