Combobox Read Only

Take a look at the DropDownStyle property. There's 3 to choose from, I *think* you want 'DropDownList', though I can't 100% remember the names.
 
Yes, it is DropDownList. The only problem with using the DropDownList style is that you can not set the SelectedIndex property at runtime, which means that you must write code to do so or always start with a blank combo box.
 
Back
Top