Instead of only the little tiny down arrow? Seems like there should be a property I can set or something, but I'm not seeing one... unless I'm blind.
Asked
Active
Viewed 594 times
2 Answers
3
Are you looking for
comboBox1.DropDownStyle = ComboBoxStyle.DropDownList;
maybe? That will make the combo box non-editable, i.e. it won't act like a text box with a button but just as a large button that will open the drop-down.

Joey
- 344,408
- 85
- 689
- 683
-
Yup, that's it! lol, can't believe I overlooked that. Thanks a ton! – Chaddeus Sep 22 '11 at 07:39
-
Johann: Most of that time was spent finding that damn property again. It's been over 1½ years since I've done Winforms stuff ;-) – Joey Sep 22 '11 at 07:56
1
If the combobox DropDownStyle is set to DropDownList, it will be automatic

Johann Blais
- 9,389
- 6
- 45
- 65