I'm using a ComboBox with the DropDownStyle = "DropDownList". Programatically I set the DataSource for the items in the list. Something like this :
combo.DisplayMember = "Text";
combo.ValueMember = "id";
combo.DataSource = ds.tbl;
The list is populated correctly and the first element is selected. How do I prevent the first element from being selected?