PRB: Early Binding Fails with Out-Of-Process OLE Servers

Last reviewed: October 30, 1995
Article ID: Q137094
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

SYMPTOMS

When performing early binding on an out-of-process OLE server class, you might expect the Visual Basic 4.0 compiler to detect references made to invalid methods or properties. Yet, sometimes such invalid references are ignored by the compiler and are only detected at run time.

CAUSE

There are two probable causes for this problem:

  • Improper declaration of object variable. For early binding to work, you must declare your object variable as follows:

          Dim MyObjectVar As New MyServer.MyClass
    

    If you use the following, early binding will not work:

          Dim MyObjectVar As Object
    

    -or-

  • Compile On Demand option is set on. Click Options on the Tools menu, and click the Advanced tab. The Compile On Demand option must be set to false for the compiler to detect references made to invalid methods or properties in the server class.

STATUS

This behavior is by design.


Additional reference words: 4.00 vb4win vb4all
KBCategory: kbtool kbole kbprb kbtshoot
KBSubcategory: IAPOLE


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.