I want to get the text constant from a Enum.
Public Enum DayOfWeek
Monday=1
Tuesday =2
<etc>
End Enum
If I have the number, how do I get the text constant on the enum.
example:
msgbox(1) How would this function return "Monday", not "1"?
Public Enum DayOfWeek
Monday=1
Tuesday =2
<etc>
End Enum
If I have the number, how do I get the text constant on the enum.
example:
msgbox(1) How would this function return "Monday", not "1"?