I have few items on my ComboBox items collection, and i\'d like to select one item from this list and set it as default item - when app starts - this item is al
ComboBox
first, go to the form load where your comboBox is located,
then try this code
comboBox1.SelectedValue = 0; //shows the 1st item in your collection