List Box

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

It seems that the list box will only find on the first character. Is that
correct or is there a way to make a list box work on an incremental search
the way a combo box does?

Thank you for your help.

Steven
 
Steven said:
It seems that the list box will only find on the first character. Is
that correct or is there a way to make a list box work on an
incremental search the way a combo box does?

Nope, that's the way the ListBox works. You could have a separate TextBox
and use some Code in the Change event to simulate the way a ComboBox works
though.
 
Back
Top