I do not want the user to be able to change the value displayed in the combobox. I have been using Enabled = false but it grays out the text, so it is not very
Enabled = false
Here is the Best solution for the ReadOnly Combo.
private void combo1_KeyPress(object sender, KeyPressEventArgs e) { e.KeyChar = (char)Keys.None; }
It will discard the keypress for the Combo.