You may also name the Enum values with spaces:Try to use values that are unlikely to be used by anything else, because you really want these values to be unique and not to be confused with anything else.Code:Public Enum MyEnum [My Default] [My Special Value] [My Extra Super Special Value] [My Extreme] End Enum
I'd highly recommend always using the Or operator instead of the + operator when doing bit level manipulation![]()




Reply With Quote