How to make a combobox uneditable?
C#
2
Posts
2
Posters
0
Views
1
Watching
-
How do you want it uneditable? So you can't change the text that is picked from the list?
myComboBox.DropDownStyle = ComboBoxStyle.DropDownList;
does that If you want to make it so that you can't even change which value is selected then set the Enabled property to false. HTH, James Simplicity Rules!