0
Hi Nick,
Welcome to the C-sharpcorner forum.
You could do that by modifying the AutoCompleteMode and AutoCompleteSource property of your combobox
try:
AutoCompleteMode = Suggest
AutoCompleteSource = ListItems
Try playing around and modifying those values until you come up with what you want.
*the DropDownStyle must either be set to DropDown or Simple
0
Hi Nick,
I don't think you can automatically drop a combo box. but what you can do is have a text box for your query and a list box for your results, the list box only appearing if results are obtained from the db. you could also make a custom control with the a text box, list box and button (for the drop down arrow) so it can be used on any form of your application. I would be happy to help if needed.
www.c-sharplizards.com