Hi in asp.net I can easily do the following on a databound dropdown list:
myDdl.SelectedIndex = myDdl.Items.IndexOf(myDdl.Items.FindByValue("MyItem"));
So that it would show say the 3rd (or whatever) item in the list on load
How do I do the same for a comboBox in win forms?
Thanks