a lot of people have answered the question of how to bind an enum to a combo box in WinForms. Its like this:
comboBox1.DataSource = Enum.GetValues(typeof(MyE
That was always a problem. if you have a Sorted Enum, like from 0 to ...
public enum Test
one
Two
Three
End
you can bind names to combobox and instead of using .SelectedValue property use .SelectedIndex
Combobox.DataSource = System.Enum.GetNames(GetType(test))
and the
Dim x as byte = 0
Combobox.Selectedindex=x