I have this enum:

Public Enum Letters As Byte
a = 1
b = 2
c = 3
End Enum

dim mbyte as byte = 2



how do i get the name associated with mbyte?

thanks...