Article ID: 150121
Article Last Modified on 11/21/2006
APPLIES TO
- Microsoft Foundation Class Library 4.2, when used with:
- Microsoft Visual C++ 1.0 Professional Edition
- Microsoft Visual C++ 1.5 Professional Edition
- Microsoft Visual C++ 1.51
- Microsoft Visual C++ 1.52 Professional Edition
- Microsoft Visual C++ 2.0 Professional Edition
- Microsoft Visual C++ 4.0 Standard Edition
- Microsoft Visual C++ 4.1 Subscription
- Microsoft Visual C++ 4.2 Enterprise Edition
- Microsoft Visual C++ 4.2 Professional Edition
- Microsoft Visual C++ 5.0 Enterprise Edition
- Microsoft Visual C++ 5.0 Professional Edition
- Microsoft Visual C++ 6.0 Enterprise Edition
- Microsoft Visual C++ 6.0 Professional Edition
- Microsoft Visual C++ 6.0 Standard Edition
This article was previously published under Q150121
SYMPTOMS
The wrong resource is loaded when CBitmap::LoadBitmap, CMenu::LoadMenu,
CString::LoadString or any other MFC resource-loading function is called in
an MFC extension DLL (AFXDLL). In some cases, a resource in the application
is loaded instead of the appropriate resource in the extension DLL.
CAUSE
When a resource in the application or another extension DLL gets loaded
instead of a resource in the current extension DLL, the cause is usually
improper resource management. An MFC application and all of its extension
DLLs are one global chain of resources. If there are multiple resources
with the same ID value in any of the modules in the chain, MFC uses the
first resource it finds with the desired ID value. The first resource is
often found in the application, which is searched before any of the
extension DLLs.
RESOLUTION
Change the ID values of any resources that conflict so they are unique in
both the application and any extension DLL that the application uses. These
values are stored in the Resource.h file for each project and can be
modified in the Resource Editor or AppStudio with the Resource Symbols
command.
To ensure that modules do not use conflicting symbol values, reserve
different ranges of ID values for each module in the 1 through 0x6FFFF
range. Set the _APS_NEXT_RESOURCE_VALUE definition in the Resource.h file
for each module to the low end of that module's range before creating any
resources. The Resource Editor uses this symbol to determine the ID value
of the next resource created.
This technique is documented in MFC Technical Note 35 and in the DLLHUSK
sample included with Visual C++.
STATUS
This behavior is by design.
REFERENCES
For more information on:
- Extension DLLs, see the MFC Technical Note 33 and the DLLHUSK sample.
- Resource management in projects, see Technical Note 35.
Additional query words: kbDSupport
Keywords: kbarchitecture kbbitmap kbcode kbdll kbicon kbprb kbresource kbstring KB150121