FIX: Crash When Enum Name Referenced Incorrectly (171482)
The information in this article applies to:
- Microsoft Visual Basic Control Creation Edition for Windows 5.0
- Microsoft Visual Basic Learning Edition for Windows 5.0
- Microsoft Visual Basic Professional Edition for Windows 5.0
- Microsoft Visual Basic Enterprise Edition for Windows 5.0
This article was previously published under Q171482 SYMPTOMS
When incorrectly referring to an Enum name of a UserControl, such as
treating the Enum name as a Property of the UserControl, Visual Basic will
give a fatal error and close.
The error received will be similar to one of the following;
VB5 caused an invalid page fault in module VB5.Exe...
The instruction at "0x004762d3 referenced memory at "0x0000000".
The memory could not be "read"...
CAUSE
The fatal error is the end result of incorrectly referencing a Enum name
within a UserControl. For example, if the following Enum is declared in the
General Declarations of a UserControl:
Public Enum Salsa
Mild
Medium
Hot
End Enum
then an instance of UserControl is added to a form, and the Salsa
enumeration is referred to as:
UserControl1.Salsa
The fatal error described above will occur. Enumerations behave like public
constants and cannot be referenced like a variable or property. To
reference the Salsa enumeration correctly, the user should reference
Salsa.<membername>, such as:
Salsa.Hot
STATUS
Microsoft has confirmed this to be a bug in the Microsoft products listed
at the beginning of this article. This bug has been fixed in Visual Studio
97 Service Pack 2.
For more information on the Visual Studio 97 Service Pack 2, please see the
following article in the Microsoft Knowledge Base:
170365
: INFO: Visual Studio 97 Service Packs - What, Where, and Why
For a list of the Visual Basic 5.0 bugs that were fixed in the Visual
Studio 97 Service Pack 2, please see the following article in the Microsoft
Knowledge Base:
171554
: INFO: Visual Basic 5.0 Fixes in Visual Studio 97 Service Pack 2
Modification Type: | Major | Last Reviewed: | 12/10/2003 |
---|
Keywords: | kbbug kbfix kbvbp500sp2fix kbVS97sp2fix KB171482 |
---|
|