S
shapper
Hello,
I need to set predefined values. So I am using an enum:
' Level
Public Enum Level
Basico1Ciclo
Secundario
Superior
End Enum
The problem is I sometimes I need to display a variable value which has
the type level.
But the value should be:
Basico1Ciclo - "1º Ciclo do Ensino Básico"
Secundario - "Ensino Secundário"
Superior - "Ensino Superior"
How should I do this?
Maybe I am looking at enum the wrong way.
Thanks,
Miguel
I need to set predefined values. So I am using an enum:
' Level
Public Enum Level
Basico1Ciclo
Secundario
Superior
End Enum
The problem is I sometimes I need to display a variable value which has
the type level.
But the value should be:
Basico1Ciclo - "1º Ciclo do Ensino Básico"
Secundario - "Ensino Secundário"
Superior - "Ensino Superior"
How should I do this?
Maybe I am looking at enum the wrong way.
Thanks,
Miguel