D
Desmond Cassidy
I created an Enum with the EnumBuilder which allows you to add items with spaces embedded as well as the name of the Enum. e.g. US States and a member of New York
The normal way you would iterate through an Enum is as follows
For Each lstrItem As String In [Enum].GetNames(GetType(Geographical.US_States))
Me.Combo.Items.Add(lstrItem)
Next
But how would you reference an Enum of "US States" ??? * Iknow I could just as easily create an Enum US_States...
just a question though !!!
The normal way you would iterate through an Enum is as follows
For Each lstrItem As String In [Enum].GetNames(GetType(Geographical.US_States))
Me.Combo.Items.Add(lstrItem)
Next
But how would you reference an Enum of "US States" ??? * Iknow I could just as easily create an Enum US_States...
just a question though !!!