If you’re writing an ActiveX control, you can create properties that return an enumerated value, as in:
Public Enum SizeConstants SizSmall = 1 SizMedium SizLargeEnd EnumPublic Size As SizeConstants
When another developer is using your control, an enumerated property appears in the Property Window at design time as a combo box that contains all the constants you have defined in the Enum structure (“SizSmall”, “SizMedium” and “SizLarge”, in this case). What if you wish to add more descriptive names, that include spaces and other punctuation symbols? For instance, this is what Visual Basic itself does for a few property such as DrawMode (that exposes constants named “Copy Pen” or “Not Merge Pen”). Apparently these names would be rejected by the Visual Basic, but you can use them if you enclose their name between square brackets:
Public Enum SizeConstants [Small Size] = 1 [Medium Size] [Large Size]End Enum
A warning: if you use this trick, you must use the square brackets when referring to the constants in your code, both from within your ActiveX control project and in the client project:
MyControl.Size = [Medium Size]
Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.
Related Posts
- Cleveland Clinic and NNF launch biomedical fellowship
- Pass Comma Separated Values as a Parameter to an SQL Stored Procedure
- DateDiff_BIG Function
- Perforce Introduces Helix GitSwarm: Flexible Git Ecosystem Mirrored to a Powerful Mainline Repository
- Jadu launches ‘Universe Continuum CMS’ – delivers customers over ??1.2m in savings each year























