Cvtres.exe Program Error May Occur When a Large Resource Script Contains Custom Resources (230332)
The information in this article applies to:
- Microsoft Windows NT Server 4.0
- Microsoft Windows NT Workstation 4.0
This article was previously published under Q230332 SYMPTOMS
A large resource script that contains many custom resources with string names may cause the following error message to be displayed during linking:
CVTRES.EXE Application Error - The instruction at "0x01002b2b" referenced memory at [address]. The memory could not be "written".
CAUSE
This problem occurs because there is a limited amount of space that is available during linking for string names for custom resources. A large resource script that contains many custom resources with very long string names may exceed the available space and cause the observed linker error.
RESOLUTION
A supported fix that corrects this problem is now available from Microsoft, but it has not been fully regression tested and should be applied only to systems experiencing this specific problem.
The English version of this fix should have the following file attributes or later:
Date Time Size File name Platform
---------------------------------------------------
05/13/99 05:33p 16,656 Cvtres.exe x86
05/13/99 08:30p 25,872 Cvtres.exe Alpha
WORKAROUND
To work around this problem, use numbers to identify resources instead of strings.
STATUSMicrosoft has confirmed that this is a problem in the Microsoft products that are listed at the beginning of this article. MORE INFORMATION
The error is the result of the number of characters in a custom resource name. The following describes the problem:
If you create a custom resource called "MYTYPE" and add resources under this type by using Developer Studio, a number is associated with the resources in the Resource.h file.
If you delete these numbers or create the custom MYTYPE resources by hand, the resource compiler thinks that you intended to reference these resources by a string.
The code to load the resource is different depending on whether the resource is identified by using a number or a string.
You use the following line to load a MYTYPE type of resource with the numeric ID ID_MYTYPEONE (defined in Resource.h):
FindResource(hMod, MAKEINTRESOURCE(ID_MYTYPEONE), "MYTYPE");
You use the following line to load a MYTYPE type of resource with the string ID "MYTYPEONE" (defined in Resource.h):
FindResource(hMod, "MYTYPEONE", "MYTYPE");
The problem concerns custom resources that have been identified with strings rather than numbers. If these strings are long and numerous, the crash may occur if you overrun the space that is available for their names.
Empirical testing has shown that the following formula may be used to determine when the problem may occur:
Total Number of Characters After Which You Crash = 32760 - #Resources
Thus, if you have 5,460 resources, the total number of characters taken up by all of those resource names combined should not exceed 27,300.
Modification Type: | Minor | Last Reviewed: | 9/23/2005 |
---|
Keywords: | kbHotfixServer kbQFE kbbug kbfile kbfix KB230332 |
---|
|