Hope this helps. I also reccomend all the enums in one class.
Peter
Done yesterday
A technique I use when I'm trying to set up a lookup on an enum, is to create a variable of the enum type, then get the type of the variable, and the AssemblyQualifiedName of the type, e.g.
MsgBox(fred.GetType.AssemblyQualifiedName)
Usually I do this in the debugger, put a breakpoint on the Msgbox line, put fred.GetType.AssemblyQualifiedName in the Watch and copy the literal value from the Watch to where I want the enum name. Especially useful wher it isn't your enum that you're trying to use.
If not, try creating the Enum in a separate class file, re-build, then assign the enum to the combobox again and test.
That is on my list. So far, I have only 2 enums in the project, so it will not be too hard to refactor this later after I have wowwed the client with how quick I am
Thanks for trying to help.
It seems that it cannot find the enum. What would cause this?
to
Any difference?
No - still no items in the list