P
Peter Stojkovic
I have an ENUM
Public Enum enum1 As Integer
STEP_00= 0
STEP_01= 1
STEP_02=2
.....
STEP_999=999
end enum
When the user makes an input like 99
the variable xx should be set.
Dim xx as enum1
xx = cint(textbox1.text)
But Cint is not possible. How can I assign the user-input ( for example 99 )
to varibale xx ??
Thanks for any help
Public Enum enum1 As Integer
STEP_00= 0
STEP_01= 1
STEP_02=2
.....
STEP_999=999
end enum
When the user makes an input like 99
the variable xx should be set.
Dim xx as enum1
xx = cint(textbox1.text)
But Cint is not possible. How can I assign the user-input ( for example 99 )
to varibale xx ??
Thanks for any help