Click here to Skip to main content
15,884,047 members
Articles / Desktop Programming / Windows Forms

AutoComplete TextBox with SubString search, similar to SQL Like or Contains

Rate me:
Please Sign up or sign in to vote.
4.66/5 (26 votes)
12 Sep 2011CPOL3 min read 111.3K   11.9K   44   39
A TextBox with autocomplete capabilities in the manner of SQL's Like command
AutoCompleteTextBoxSample.jpg

Introduction

I was searching for a TextBox with autocomplete capabilities considering substring matches. The solutions I found were little clumsy, so here is my rather simple, but stable solution.

Background

This is my first article, so don't expect this to be perfect. The code comments are overkill, I think, but this makes the source self explaining.

Well, there are a few differences between other approaches. At first, we use a Panel instead of a Form to display a list of suggestions. Secondly, we use IndexOf instead of Linq to find the matches. Thirdly, we use pure safe .NET code only, no Win32 Calls and no sloppy threading, e.g. sleep(), or other stuff.

Behind the Scenes

In the main Form's Load event, we read a text file called "en-EN.dic", which is a dictionary with more than 50,000 entries. It is to be stored it in the component's AutoCompleteList property, which is a List<string>.

While the AutoCompleteList is used as "database" and remains unchanged, the CurrentAutoCompleteList property contains a subset of appropriate candidates to be shown as suggestions in a ListBox beneath.

The main work is done in a method called ShowSuggests() which calls a time critical method named UpdateCurrentAutoCompleteList() that calls the second time critical method UpdateListBoxItems(). I mention this because the internal list of elements to be shown and the list finally added to the image box are both time consuming operations that may cause laggy responses. So why are we using two lists for our data? Well, this is not the last word spoken, but I found DataSource/ DataContext to be faster than adding single items to the listbox in the substring query (see if ((Str.IndexOf(this.Text) > -1)) ).

Using the Code

The component is used like a normal TextBox, except that it has some "special" properties that can be set (CaseSensitive, MinTypedCharacters and the AutoCompleteList). A sample of the usage can be found in the Form's Load event. In brief: Drop it into a Form and assign a List<string> of phrases to the AutoCompleteList property.

Some Things to be Mentioned

I have done some performance measuring and alternative implementations, so you may switch between an ArrayList or a List<string> basis. I have chosen the second one because it is a generic type. However I found the ArrayList to perform a little better on large data (dictionary at about 10MB size). Maybe you would like to take this further, see the comments.

You will find two digressions, named excursions (bad English), like this in the source:

C#
#region Digression: Performance measuring of Linq queries
// This is a simple example of speedmeasurement for Linq queries
/*
CurrentAutoCompleteList.Clear();
Stopwatch stopWatch = new Stopwatch();
stopWatch.Start();
// using Linq query seems to be slower (twice as slow)
var query =
    from expression in this.AutoCompleteList
    where expression.ToLower().Contains(this.Text.ToLower())
    select expression;
foreach (string searchTerm in query)
{
    CurrentAutoCompleteList.Add(searchTerm);
}
stopWatch.Stop();
// method (see below) for printing the performance values to console
PrintStopwatch(stopWatch, "Linq - Contains");
*/
#endregion Digression: Performance measuring of Linq queries

The code within these regions is uncommented and meant for comparison of alternative implementations in the case shown above, to measure the performance of an alternative Linq query.

The other digression is about switching to a method using AddRange to fill the list of suggestions. In the example code, the default method used is a manual update of the BindingContext. If you experience problems with that, just feel free to choose the other approach.

Here is how the manual updating of the BindingContext of the ListBox works:

C#
// bind the data in the constructor
listBox.DataSource = CurrentAutoCompleteList;

// later on, use the CurrencyManager to update the BindingContext manually
((CurrencyManager)listBox.BindingContext[CurrentAutoCompleteList]).Refresh();
// note that Panel and ListBox have to be added to the ParentForm for this to work!!!

The rest is just about correct timing and knowing when to show components and how to handle key and mouse events for two components in one. So we take care of KeyDown for PageUp and PageDown keys, MouseClick and MouseDoubleClick events. And we ensure the component to fit into the ParentForm, avoid flickering and overlapping and so on.

Happy coding!

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Germany Germany
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
SuggestionPerformance improvement Pin
Member 1564009425-May-22 21:06
Member 1564009425-May-22 21:06 
Questioncrash with own list Pin
Member 803001517-Dec-19 11:42
Member 803001517-Dec-19 11:42 
QuestionCan we apply the same code on datagridview Textbox column Pin
Member 1418692430-Aug-19 23:46
Member 1418692430-Aug-19 23:46 
GeneralMy vote of 5 Pin
Rickpat4-Apr-19 18:39
Rickpat4-Apr-19 18:39 
QuestionTy so much Pin
pekation28-May-18 8:23
pekation28-May-18 8:23 
QuestionError? And using it on Datagridview Pin
Member 119839076-Feb-18 23:41
Member 119839076-Feb-18 23:41 
QuestionAutoComplete with Key/Value Pair Pin
ugama14-Sep-16 3:52
ugama14-Sep-16 3:52 
AnswerTwo methods successful experience in the autoComplete textBox control with SQL Pin
Member 1113875416-Aug-16 1:39
Member 1113875416-Aug-16 1:39 
Questionhelp, convert to vb.net Pin
Member 115768855-Aug-16 9:16
Member 115768855-Aug-16 9:16 
QuestionBug Pin
krahmanali23-Dec-15 6:58
krahmanali23-Dec-15 6:58 
Question"Improvment" on class Pin
Member 120998942-Nov-15 1:38
Member 120998942-Nov-15 1:38 
QuestionDatagridview textbox column Pin
Member 84196013-Mar-15 1:28
Member 84196013-Mar-15 1:28 
GeneralMy vote of 5 Pin
Member 1146617619-Feb-15 22:30
Member 1146617619-Feb-15 22:30 
QuestionWhat is the Point of this If Block? Pin
SkiGeek8216-Dec-14 14:22
SkiGeek8216-Dec-14 14:22 
AnswerRe: What is the Point of this If Block? Pin
Oliver Bleckmann18-Dec-14 23:45
Oliver Bleckmann18-Dec-14 23:45 
GeneralMy vote of 1 Pin
agent_kruger2-Oct-14 0:19
professionalagent_kruger2-Oct-14 0:19 
GeneralRe: My vote of 1 Pin
Oliver Bleckmann3-Oct-14 5:26
Oliver Bleckmann3-Oct-14 5:26 
GeneralRe: My vote of 1 Pin
agent_kruger21-Oct-14 4:14
professionalagent_kruger21-Oct-14 4:14 
GeneralRe: My vote of 1 Pin
Oliver Bleckmann27-Nov-14 13:20
Oliver Bleckmann27-Nov-14 13:20 
GeneralRe: My vote of 1 Pin
Eddy Vluggen12-Jun-15 0:25
professionalEddy Vluggen12-Jun-15 0:25 
QuestionBug when AutoCompleteTextBox are inside tabcontrol Pin
Member 108523911-Aug-14 12:13
Member 108523911-Aug-14 12:13 
AnswerRe: Bug when AutoCompleteTextBox are inside tabcontrol Pin
Oliver Bleckmann4-Aug-14 9:05
Oliver Bleckmann4-Aug-14 9:05 
GeneralRe: Bug when AutoCompleteTextBox are inside tabcontrol Pin
Member 108523915-Aug-14 4:38
Member 108523915-Aug-14 4:38 
GeneralRe: Bug when AutoCompleteTextBox are inside tabcontrol Pin
Oliver Bleckmann6-Aug-14 1:13
Oliver Bleckmann6-Aug-14 1:13 
BugRe: Bug when AutoCompleteTextBox are inside tabcontrol Pin
Member 131138085-Sep-18 3:46
Member 131138085-Sep-18 3:46 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.