The information in this article applies to:
SYMPTOMSAfter changing the type library version in the .idl file, any method you call in an ATL COM object returns an error of 0x8002801D (TYPE_E_LIBNOTREGISTERED or "Library not registered"). CAUSEFor dual interfaces, the ATL Object Wizard generates code that derives your COM class from IDispatchImpl. IDispatchImpl's fourth and fifth arguments are default arguments that map to the major and minor versions of the type library. These default to version 1.0. ATL uses this version to call LoadRegTypeLib(), which fails with TYPE_E_LIBNOTREGISTERED if the version in the type library doesn't match. RESOLUTIONAdd the appropriate version number to the template arguments for IDispatchImpl and IProvideClassInfo2Impl, if you are deriving from this class. For example, to set the type library version number to 2.5, your class declaration might resemble the following:
If your class derives from CStockPropImpl instead of IDispatchImpl, you need to set the type library version number via member variables, because CStockPropImpl derives from IDispatchImpl but it doesn't provide any template arguments for setting the version number. The major and minor version numbers are actually stored in CComTypeInfoHolder::m_wMajor and CComTypeInfoHolder::m_wMinor. IDispatchImpl contains a CComTypeInfoHolder member called _tih. You can set the version number in your class constructor:
STATUSThis behavior is by design. MORE INFORMATIONThe same problem may exhibit different symptoms in different containers depending on what you are doing:
REFERENCES(c) Microsoft Corporation 1999, All Rights Reserved. Contributions by Samson Tanrena, Microsoft Corporation. Additional query words:
Keywords : kbActiveX kbAutomation kbCOMt kbCtrlCreate kbRegistry kbVC600 kbATL300 kbfaq kbGrpMFCATL kbIDL |
|
Last Reviewed: January 19, 2000 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |