devxlogo

Hide Enumerations for Validation

Hide Enumerations for Validation

VB5 introduced support for enumerations, which are related sets of constants. Although you can declare a property as an enumerated type, VB lets you assign any long integer value to the property. Were you able to determine the lowest and highest values in the enumeration, you could easily validate an enumerated property, but the language doesn’t support it. Instead, you can inspect the minimum and maximum values by creating hidden members in the enumeration:

 Public Enum MyAttitudeEnum	[_maMin] = 1	maHappy = 1	maSad = 2	maIndifferent = 3	[_maMax] = 3End Enum

Inspecting the values of [_maMin] and [_maMax] makes it easy for you to validate against an enumerated type.

See also  Why ChatGPT Is So Important Today
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist