ComboBox that remembers recently entered values and can autocomplete

anahita87

Newcomer
Joined
Jan 22, 2009
Messages
1
I'm developing a Desktop Search Engine in VB.NET.
I'm using a ComboBox to specify the search query (string).
I want the ComboBox to remember and display recent queries. I also want the ComboBox to try and Autocomplete the queries as the user is typing.

What is the best way to implement this?
 
What version of .Net? If you are using version 2 or later the textbox supports auto completion directly, there are 3 or 4 properties AutocompleteMode, AutocompleteSource or similar - these should get you started.
 
Back
Top