Click here to Skip to main content
Click here to Skip to main content

AutoComplete Textbox

By , 30 Dec 2011
 

Introduction

During work on a project, I needed to use a control having auto complete facility in it as user types. I realized that we can make use of the textbox control or combobox control for this purpose. Both controls can be used to filter records as a drop down list to show the best matches. I will demonstrate it using VB.NET. If someone needs a C# version, an online converter can be used. I will be discussing the addition and removal of item from the drop down list.

Prerequisites

Before reading this article, we need to be aware of two properties and an enumeration introduced by Microsoft in the .NET Framework 2.0 which is AutoCompleteCustomSource property, AutoCompleteMode property and AutoCompleteSource enumeration.

We should also have a look at AutoCompleteStringCollection class.

Design

An auto complete source is binded to the textbox’s AutoCompleteCustomSource property. It will help to filter the best fit records in the suggestion list.

'Item is filled either manually or from database
Dim lst As New List(Of String)

'AutoComplete collection that will help to filter keep the records.
Dim MySource As New AutoCompleteStringCollection()

Implementation

I have filled the source from the list named ‘lst’ at Form1_Load event. This list can be populated by the database as well.

Private Sub Form1_Load(ByVal sender As System.Object, _
	ByVal e As System.EventArgs) Handles MyBase.Load

    'Manually added some items
    lst.Add("apple")
    lst.Add("applle")
    lst.Add("appple")
    lst.Add("appplee")
    lst.Add("bear")
    lst.Add("pear")

    'Records binded to the AutocompleteStringCollection.
    MySource.AddRange(lst.ToArray)

    'this AutocompleteStringcollection binded to the textbox as custom
    'source.
    TextBox1.AutoCompleteCustomSource = MySource

    'Auto complete mode set to suggest append so that it will sugesst one
    'or more suggested completion strings it has bith ‘Suggest’ and
    '‘Append’ functionality
    TextBox1.AutoCompleteMode = AutoCompleteMode.SuggestAppend

    'Set to Custom source we have filled already
    TextBox1.AutoCompleteSource = AutoCompleteSource.CustomSource
End Sub

Operations on AutoCompleteSource

As I have discussed earlier that we will see how to add/ remove entry from the source, we have binded to the Textbox’s source.

The event uses this task to achieve is KeyDown event.

Here is the source with explanation:

Private Sub TextBox1_KeyDown(ByVal sender As System.Object, _
ByVal e As System.Windows.Forms.KeyEventArgs) Handles TextBox1.KeyDown

If e.KeyCode = Keys.Enter Then   ' On enter I planned to add it the list
     If Not lst.Contains(TextBox1.Text) Then  ' If item not present already
        ' Add to the source directly
         TextBox1.AutoCompleteCustomSource.Add(TextBox1.Text)
     End If
ElseIf e.KeyCode = Keys.Delete Then 'On delete key, planned to remove entry

' declare a dummy source
Dim coll As AutoCompleteStringCollection = TextBox1.AutoCompleteCustomSource

' remove item from new source
coll.Remove(TextBox1.Text)

' Bind the updates
TextBox1.AutoCompleteCustomSource = coll

' Clear textbox
TextBox1.Clear()

End If                   ' End of ‘KeyCode’ condition

End Sub

Conclusion

There are more details as to how the whole thing works. I feel this is a viable solution for an Auto-Complete TextBox and I hope you find it interesting.

License

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

About the Author

Shahan Ayyub
Software Developer eHealthWorks LLC
Pakistan Pakistan
Member
I satisfy my daily 'urge to code' by participating in forums:
 
On Experts-Exchange:
Screen Name : Shahan_Developer
 
On MSDN:
Screen Name : EngrShahan
 
On C-Sharp Corner:
Screen Name : ShahanDev
 
On DaniWeb IT Community:
Screen Name : ShahanDev

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
AnswerRe: Error AutoComplete "AccessViolationException"memberom3n30 Jul '12 - 18:55 
GeneralRe: Error AutoComplete "AccessViolationException"memberShahan Ayyub30 Jul '12 - 18:58 
QuestionError AutoComplete "AccessViolationException"memberMember 928154029 Jul '12 - 17:28 
AnswerRe: Error AutoComplete "AccessViolationException"memberShahan Ayyub30 Jul '12 - 7:55 
QuestionRe: Error AutoComplete "AccessViolationException"memberom3n30 Jul '12 - 17:51 
QuestionMore like a TipmemberPIEBALDconsult30 Dec '11 - 4:36 
AnswerRe: More like a TipmemberShahan Ayyub2 Jan '12 - 23:05 
GeneralMy vote of 5memberAhmed_online30 Dec '11 - 2:33 
GeneralMy vote of 2memberkhaled.mufti27 Dec '11 - 19:19 
GeneralMy vote of 5memberMavusana23 Dec '11 - 1:20 
Generalthank you a lotmemberAmila thennakoon10 Sep '11 - 6:33 
GeneralRe: thank you a lotmemberShahan Ayyub10 Sep '11 - 6:57 

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

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130516.1 | Last Updated 30 Dec 2011
Article Copyright 2011 by Shahan Ayyub
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid