You may also name the Enum values with spaces:
Code:
Public Enum MyEnum
    [My Default]
    [My Special Value]
    [My Extra Super Special Value]
    [My Extreme]
End Enum
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.


I'd highly recommend always using the Or operator instead of the + operator when doing bit level manipulation