Filter List box with Text box

Creative2

Freshman
Joined
Jan 7, 2003
Messages
31
Location
Toronto, Canada
Hi Guys,
You guys must have seen lotta applications in whcih, when you type something on textbox, list box scrolls automatically, or when you click listbox, it changes the text in text box.

So anyone knows how it is done?

I would really appreciate your help.
jazz
 
You can accomplish this with the FindString and FindStringExact
methods of the ListBox. Whenever the return value is greater
than -1, then set the ListBox's selected item to the item at that
index.
 
Back
Top