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
comboBox1.DataSource = Enum.GetValues(typeof(MyEnum)); comboBox1.SelectedIndex = (int)MyEnum.Something; comboBox1.SelectedIndex = Convert.ToInt32(MyEnum.Something);
Both of these work for me are you sure there isn't something else wrong?