combobox q

  • Thread starter Thread starter Strahimir Antoljak
  • Start date Start date
S

Strahimir Antoljak

Is there a way to make combobox expand
itself when a user start typing into it.
DrowDownStyle = DropDown.
Any help is very welcome.

thanks
 
Hello,

Yes, for the combobox create an event for TextChanged and add the following
line to it:

NameOfComboBox.DroppedDown = True

Hope this helps
 
this is pretty much exactly what I was looking
for. much obliged.

--
Strah @ Langan

Simon Jefferies said:
Hello,

Yes, for the combobox create an event for TextChanged and add the following
line to it:

NameOfComboBox.DroppedDown = True

Hope this helps
 
Back
Top