how to restrict combo box only to list values?
C#
4
Posts
2
Posters
0
Views
1
Watching
-
Hello, how do I restrict the ComboBox control in VisualStudio so that the user can't select any value outside of the values listed in the combo box drop-down list? Is that at all possible? Thank you, Michal
-
Hello, how do I restrict the ComboBox control in VisualStudio so that the user can't select any value outside of the values listed in the combo box drop-down list? Is that at all possible? Thank you, Michal
change the style to list view
-
change the style to list view
Thanks! DropDownStyle = DropDownList is it! I couldn't find it. Thanks, Michal
-
Thanks! DropDownStyle = DropDownList is it! I couldn't find it. Thanks, Michal
That's perfect!!