hello,
its a bit hard to explain, but how can i predifine a number of values in visual studio to choose from. like colors does like System.drawing.color.red when i for example use :
System.UIoptions.Allsubdirectories <-- this is a value
How can i create my own?
so for example i could say :
dim state as customclasscalledstate = customclasscalledstate.Open
dim state as customclasscalledstate = customclasscalledstate.Closed
dim state as customclasscalledstate = customclasscalledstate.Processing
if state = customclasscalledstate.Open Then 'Do something
instead of :
Dim state as string = "Open"
Dim state as string = "closed"
Go to the complete details ...