Meh, me = confused
I want to get a list of all the elements in an Enum...
let's say I have this:
Let's say I want to add all the values AND all the names of the variables in that enum in a listbox...how can I do thatVB Code:
Enum SomeThing A = 1 B C D End Enum
so the listbox will be something like this:
"A = 1"
"B = 2"
"C = 3"
I think it's possible to do this with the parse method if you know the name of the variables... but what if I dont know that![]()





Reply With Quote