views:

1219

answers:

1

How do I go about making the default value of the combobox as the first item in the array.

+3  A: 

Put this code after you have populated the combo box:

comboBox1.SelectedIndex = 0;
Mark Heath