combobox prohibit value change

  • Thread starter Thread starter Zhiv Kurilka
  • Start date Start date
Z

Zhiv Kurilka

Hi,
I need a drop down combobox, where user can only select values, but not
change text.
But I see no combobox.Readonly or combobox.Editable property.
Please help,
 
You can set the dropdownsytle to dropdownlist like this:

ComboBox1.DropDownStyle = ComboBoxStyle.DropDownList

or set the attribute in the designer.
 
Back
Top