I'm populating a combo box with data from a database using the DataSource property. I need the field of the combo box to be initially empty. I've tried:
cbPerson.SelectedIndex = -1;
but this doesn't work.
I've tried the solutions here:
There was one that said that you should first set the selected index to 0, and then to -1, but that doesn't work for me either.