Hello,
I have a ComboBox in my WinForm which has data from SQL server (used LINQ to bring up the data).
I'd like to have an option just like AutoComplete in VB.NET but not only by the first letter but for a search LIKE.
For Example:
My ComboBox has there texts:
"nighty night"
"hi and goodbye"
"food is good"
So what i'd like to do is when i start typing for example the word "good"
a list of options will appear (just like AutoComplete with suggest)
and i can choose from:
"hi and goodbye"
"food is good"
Is this option available?
Thanks in advanced,
Shay.