Clear ComboBox selected text
This is what you need:
comboBox1.ResetText();
You could change SelectedIndex
property:
comboBox1.SelectedIndex = -1;
The only way I could get it to work:
comboBox1.Text = "";
For some reason ionden's solution didn't work for me.