G genc ymeri Mar 24, 2004 #1 How can I avoid allowing user to type in the a ComboBox ?? I see not read-only property over there. Thank You.
How can I avoid allowing user to type in the a ComboBox ?? I see not read-only property over there. Thank You.
N Noah Coad [MVP .NET/C#] Mar 24, 2004 #2 Change the "DropDownStyle" property to "DropDownList". - Noah Coad - Microsoft MVP
J Joe Delekto Mar 24, 2004 #3 Greets, Change your ComboBox DropdownStyle property as follows: comboBox1.DropdownStyle = ComboBoxStyle.DropDownList; You can also change the property for the control in your properties window. Regards, Joe
Greets, Change your ComboBox DropdownStyle property as follows: comboBox1.DropdownStyle = ComboBoxStyle.DropDownList; You can also change the property for the control in your properties window. Regards, Joe
G genc ymeri Mar 24, 2004 #4 thanks a lot ! Joe Delekto said: Greets, Change your ComboBox DropdownStyle property as follows: comboBox1.DropdownStyle = ComboBoxStyle.DropDownList; You can also change the property for the control in your properties window. Regards, Joe Click to expand...
thanks a lot ! Joe Delekto said: Greets, Change your ComboBox DropdownStyle property as follows: comboBox1.DropdownStyle = ComboBoxStyle.DropDownList; You can also change the property for the control in your properties window. Regards, Joe Click to expand...
G genc ymeri Mar 24, 2004 #5 thanks a lot ! Noah Coad said: Change the "DropDownStyle" property to "DropDownList". - Noah Coad - Microsoft MVP Click to expand...
thanks a lot ! Noah Coad said: Change the "DropDownStyle" property to "DropDownList". - Noah Coad - Microsoft MVP Click to expand...