S
Stuart Shay
Hello All:
I have the following Emuneration which I am using in my Web Application
Enum ROLE As Integer
APPLICATION_VIEWER = 1
USER_GROUP_ADMIN = 2
SECURITY = 4
NODE_ADMIN = 8
ADMIN = 16
POWER_USER = 32
USER = 64
End Enum
If I have BitMask how do I return the Value so I can use it as a String
which looks like this
65 = APPLICATION_VIEWER|USER
41 = APPLICATION_VIEWER|NODE_ADMIN|POWER_USER
Thanks
Stuart
I have the following Emuneration which I am using in my Web Application
Enum ROLE As Integer
APPLICATION_VIEWER = 1
USER_GROUP_ADMIN = 2
SECURITY = 4
NODE_ADMIN = 8
ADMIN = 16
POWER_USER = 32
USER = 64
End Enum
If I have BitMask how do I return the Value so I can use it as a String
which looks like this
65 = APPLICATION_VIEWER|USER
41 = APPLICATION_VIEWER|NODE_ADMIN|POWER_USER
Thanks
Stuart