Descriptions are not added to the registry when using the DECLARE_REGISTRY() macro (217182)
The information in this article applies to:
- The Microsoft Active Template Library (ATL) 3.0, when used with:
- Microsoft Visual C++, 32-bit Enterprise Edition 6.0
- Microsoft Visual C++, 32-bit Professional Edition 6.0
- Microsoft Visual C++, 32-bit Learning Edition 6.0
This article was previously published under Q217182 SYMPTOMS
The DECLARE_REGISTRY() macro in ATL allows you to pass a string resource ID, which serves as a description and is supposed to be added to the registry as default values for the following keys:
HKCR\<ProgID>
HKCR\<Version Independent ProgID>
HKCR\CLSID\<CLSID>
In ATL 3.0, the string is not added to the registry.
CAUSE
CComModule::RegisterProgID() and CComModule::RegisterClassHelper() are used with the DECLARE_REGISTRY() macro. Both functions create registry keys with only the KEY_READ flag, allowing only read access.
RESOLUTION
Modify CComModule::RegisterProgID() and CComModule::RegisterClassHelper() so that the calls to CRegKey::Create() take KEY_READ|KEY_WRITE instead of just KEY_READ. Modify the following lines from:
// line 4909 in ATLBASE.H in CComModule::RegisterProgID()
LONG lRes = keyProgID.Create(HKEY_CLASSES_ROOT, lpszProgID, REG_NONE, REG_OPTION_NON_VOLATILE, KEY_READ);
and
// line 5033 in ATLBASE.H in CComModule::RegisterClassHelper()
lRes = key.Create(key, lpsz, REG_NONE, REG_OPTION_NON_VOLATILE, KEY_READ);
to
LONG lRes = keyProgID.Create(HKEY_CLASSES_ROOT, lpszProgID, REG_NONE, REG_OPTION_NON_VOLATILE, KEY_READ|KEY_WRITE);
and
lRes = key.Create(key, lpsz, REG_NONE, REG_OPTION_NON_VOLATILE, KEY_READ|KEY_WRITE);
STATUSMicrosoft has confirmed that this is a bug in the Microsoft products that are listed in the "Applies to" section.
This bug was corrected in Visual Studio 6.0 Service Pack 3.
REFERENCES
For more information about Visual Studio service packs, click the following article number to view the article in the Microsoft Knowledge Base:
194022
Visual Studio 6.0 service packs, what, where, why
194295 How to tell that a Visual Studio service pack is installed
| Modification Type: | Major | Last Reviewed: | 9/1/2005 |
|---|
| Keywords: | kbprb kbtshoot kbBug kbCtrlCreate kbfix kbRegistry kbVS600sp3fix KB217182 kbAudDeveloper kbAudITPRO |
|---|
|