ComboBox Data Binding
C#
1
Posts
1
Posters
0
Views
1
Watching
-
Hi, I have a ComboBox to which I give a string array as a DataSource. It works. I also have a DataSet and one of the columns of a table contains the SelectedIndex of this ComboBox, but when I bind it, it does not select the right index. I've decided to bind it to a numericUpDown and it works, so what's going on with the comboBox? Here's my code:
// The numeric updown displays "3", which is good! numericUpDown1.DataBindings.Add("Value", dataset.LoadModule, "RampUpSpeed"); // The selected index of the comboBox is 0, which is not good! rampUpCombo.DataBindings.Add("SelectedIndex", dataset.LoadModule, "RampUpSpeed");
Thanks!