How do I go about making the default value of the combobox as the first item in the array.
views:
1219answers:
1
+3
A:
Put this code after you have populated the combo box:
comboBox1.SelectedIndex = 0;
Mark Heath
2008-10-10 14:18:28