PRB: Adding Property in ClassWizard Changes DISPIDs for Methods

Last reviewed: January 22, 1998
Article ID: Q179691
The information in this article applies to:
  • The ClassWizard included with: - Microsoft Visual C++, 32-bit Editions, versions 4.0, 4.1, 4.2, 5.0

SYMPTOMS

When adding properties through ClassWizard to existing Automation objects, the dispatch identifiers (DISPIDs) of any methods will change.

Although changing DISPIDs does not usually cause a problem when originally building an Automation server, it can cause incompatibility problems when updating existing Automation objects. Automation clients that were built using early binding will no longer work with the updated server.

CAUSE

ClassWizard adds properties to MFC's “dispatch map” before methods. Because, by default, DISPIDs are assigned to interfaces based on the order in which they are added to the map, adding a property changes the IDs of all the existing methods.

RESOLUTION

Add properties and methods to the dispatch map and the .odl file without using ClassWizard.

You should add these additional properties outside the ClassWizard comments at the end of the dispatch map.

STATUS

Microsoft is researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available.

MORE INFORMATION

There are several MFC dispatch DISP_XXXX_ID macros that allow you to specify a specific DISPID:

   DISP_FUNCTION_ID()
   DISP_PROPERTY_ID()
   DISP_PROPERTY_NOTIFY_ID()
   DISP_PROPERTY_EX_ID()
   DISP_PROPERTY_PARAM_ID()

These macros can be useful in maintaining existing DISPID numbering.

Here is an sample dispatch map from a sample control:

////////////////////////////////////////////////////////////////////////
   // Dispatch map:

   BEGIN_DISPATCH_MAP(CTestCtrl, COleControl)
      //{{AFX_DISPATCH_MAP(CTestCtrl)
      DISP_PROPERTY_NOTIFY(CTestCtrl, "Property1", m_property1,
                           OnProperty1Changed, VT_I2)
      DISP_PROPERTY_EX(CTestCtrl, "Property2", GetProperty2,
                       SetProperty2, VT_I2)
      DISP_FUNCTION(CTestCtrl, "Method1", Method1, VT_I2, VTS_I2)
      DISP_FUNCTION(CTestCtrl, "Method2", Method2, VT_I4, VTS_NONE)
      //}}AFX_DISPATCH_MAP
      DISP_FUNCTION_ID(CTestCtrl, "AboutBox", DISPID_ABOUTBOX,
                      AboutBox, VT_EMPTY, VTS_NONE)
   END_DISPATCH_MAP()

Here is the same dispatch map using the DISP_XXX_ID macros to specify specific DISPIDs:

////////////////////////////////////////////////////////////////////////
   // Dispatch map:

   BEGIN_DISPATCH_MAP(CTestCtrl, COleControl)
      //{{AFX_DISPATCH_MAP(CTestCtrl)
      //}}AFX_DISPATCH_MAP
      DISP_PROPERTY_NOTIFY_ID(CTestCtrl, "Property1", 1,
                              m_property1, OnProperty1Changed, VT_I2)
      DISP_PROPERTY_EX_ID(CTestCtrl, "Property2", 2, GetProperty2,
                          SetProperty2, VT_I2)
      DISP_FUNCTION_ID(CTestCtrl, "Method1", 3, Method1, VT_I2, VTS_I2)
      DISP_FUNCTION_ID(CTestCtrl, "Method2", 4, Method2, VT_I4, VTS_NONE)
      DISP_FUNCTION_ID(CTestCtrl, "AboutBox", DISPID_ABOUTBOX, AboutBox,
                       VT_EMPTY, VTS_NONE)
   END_DISPATCH_MAP()

REFERENCES

For more information on MFC dispatch macros and how MFC assigns DISPIDs, see MFC TechNote TN039 in the Visual C++ Documentation.


Additional query words: dispinterface IDispatch
(c) Microsoft Corporation 1997, All Rights Reserved. Contributions by Kelly
Marie Ward, Microsoft Corporation
Keywords : MfcOLE WizardIss kbcode
Technology : ole kbmfc
Version : WINNT:4.0,4.1,4.2,5.0
Platform : winnt
Issue type : kbprb
Solution Type : kbpending


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