making combobox read only

I'm trying to make the comboboxes in my program read only so that the users can select an option but can not change the text or add options to the list.  I know how to do this in asp.net by using the .readonly property but can't seem to find anything to do this in vb.net.

Tanx for any help you can give


Answer this question

making combobox read only

  • danycxxx

    Thank you I alredy figured it out tho
  • billyzelsnack

    You need look at the DropDownStyle property of the ComboBox. ComboBoxStyle.DropDownList is the style that does what you are looking for.
  • making combobox read only