ComboBox
-
Is there a switch to disallow manual text entry into a ComboBox? Or do I need to catch the KeyPress event and impl this myself? -Luther
-
Is there a switch to disallow manual text entry into a ComboBox? Or do I need to catch the KeyPress event and impl this myself? -Luther
You need to set the
ComboBoxStyle
toDropDownList
. Check ComboBoxStyle Enumeration[^] for further details. - Nick Parker
My Blog -
Is there a switch to disallow manual text entry into a ComboBox? Or do I need to catch the KeyPress event and impl this myself? -Luther
Set the control's
DropDownStyle
toDropDownList
Charlie if(!curlies){ return; } -
Is there a switch to disallow manual text entry into a ComboBox? Or do I need to catch the KeyPress event and impl this myself? -Luther
Thank you both. -Luther