The information in this article applies to:
SYMPTOMSIf a function call to an object returns a Variant and the Variant is not assigned to a local variable, Visual Basic might not dereference the object correctly. As a result, a new thread is created in the object's process space each time the function is called. RESOLUTION
Assign the function's return value to a local variable, regardless of
whether or not it is needed.
ExampleThe class clsMyObject has a function called MyVariantFunction that returns a Variant:
If the return result of the function is not needed, calling the function without assigning the return value might cause new threads to be created:
To avoid the unnecessary creation of threads, assign the function's return value to a local variable, regardless of whether or not it is needed:
STATUSMicrosoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article. We are researching this bug and will post new information here in the Microsoft Knowledge Base as it becomes available. MORE INFORMATIONThis type of behavior usually occurs when returning variant arrays that contain user-defined types.
Keywords : kbnokeyword kbNTOS kbVBp600bug kbWinOS kbGrpVB |
Last Reviewed: January 5, 2000 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |