combo box

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello
How does one prevent the user from overtyping in a combo box

thank you in advanc

Robert
 
* "=?Utf-8?B?Um9iZXJ0IEJhdHQ=?= said:
How does one prevent the user from overtyping in a combo box.

Set the combobox's 'DropDownStyle' property to 'DropDownList'.
 
Simply set the DropDownStyle of the ComboBox to "DropDownList". This
displays an un-editable list of values for the user to select from. The
default setting of "DropDown" allows the user to type values into the
combobox...
 
Back
Top