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

A C# auto complete combo box

By , 14 Apr 2003
 

Introduction

I had the need to create a combo box control that auto completes as the user types into it. I scoured the fantastic resources available at Code Project, and found a great example in MFC, by Chris Maunder.

My requirements were that I wanted to use completely managed code for my project, and, as Chris's control was written with MFC, I decided to roll my own, based on his. I have added an additional property to this control, which limits the control to the list of items.

All the magic of the control happens in the OnTextChanged event. The _inEditMode field is set in the OnKeyDown event, based on whether or not the backspace or delete key was pressed. If this field is true, then the code finds the partial string, selecting the portion that the user has already typed.

OnValidating is overridden to fire a NotInList event in the case that the LimitToList property is true, allowing the user to perform some action if the user enters some text that is not in the list of item.

OnNotInList is also provided as a protected virtual method so that derived classes may call the event handler without subscribing to receive its events.

The source code

using System;
using System.Windows.Forms;
using System.ComponentModel;

namespace MattBerther.Controls
{
    public class AutoCompleteComboBox : System.Windows.Forms.ComboBox
    {
        public event System.ComponentModel.CancelEventHandler NotInList;

        private bool _limitToList = true;
        private bool _inEditMode = false;

        public AutoCompleteComboBox() : base()
        {
        }

        [Category("Behavior")]
        public bool LimitToList
        {
            get { return _limitToList; }
            set { _limitToList = value; }
        }

        protected virtual void 
            OnNotInList (System.ComponentModel.CancelEventArgs e)
        {
            if (NotInList != null)
            {
                NotInList(this, e);
            }
        }   

        protected override void OnTextChanged(System.EventArgs e)
        {
            if (_inEditMode)
            {
                string input = Text;
                int index = FindString(input);

                if (index >= 0)
                {
                    _inEditMode = false;
                    SelectedIndex = index;
                    _inEditMode = true;
                    Select(input.Length, Text.Length);
                }
            }

            base.OnTextChanged(e);
        }

        protected override void 
            OnValidating(System.ComponentModel.CancelEventArgs e)
        {
            if (this.LimitToList)
            {
                int pos = this.FindStringExact(this.Text);
        
                if (pos == -1)
                {
                    OnNotInList(e);
                }
                else
                {
                    this.SelectedIndex = pos;
                }
            }

            base.OnValidating(e);
        }

        protected override void 
            OnKeyDown(System.Windows.Forms.KeyEventArgs e)
        {
            _inEditMode = 
                (e.KeyCode != Keys.Back && e.KeyCode != Keys.Delete);
            base.OnKeyDown(e);
        }
    }
}

Using this control

Use this control in the same manner as you would a regular System.Windows.Forms.ComboBox. Add it to your form, via the designer or programmatically as detailed below.

protected override void OnLoad(System.EventArgs e)
{
    base.OnLoad(e);

    MattBerther.Controls.AutoCompleteComboBox cb = new 
        MattBerther.Controls.AutoCompleteComboBox();

    cb.Items.Add("Apples");
    cb.Items.Add("Oranges");
    cb.Items.Add("Grapefruits");

    cb.LimitToList = true;
    cb.NotInList += new CancelEventHandler(combobox_NotInList);
    this.Controls.Add(cb);
}

private void combobox_NotInList(object sender, CancelEventArgs e)
{
    MessageBox.Show("You entered a value that was not 
        consistent with the list provided. Please try again.");
    e.Cancel = true;
}

Many thanks again to Chris Maunder for providing an excellent starting point for implementing my own auto complete combo box in completely managed code.

History

  • 1.0 - 04.15.2003 - First release version

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Matt Berther
Web Developer
United States United States
Member
I am a 31 year old software developer from Boise, Idaho. I have been working with computers since approximately age 12, when my 6th grade teacher got me hooked. My parents got me a Commodore 64 for Christmas that year, and it's been downhill ever since. Wink | ;)
 
I have taught myself software development, beginning with Microsoft's Visual Basic 4.0. Approximately 5 years ago, I was given an opportunity to work in the tech field for a company called HealthCast. HealthCast's web-based technology solutions manage and control access to applications and patient information stored in legacy systems, client-server applications, or web solutions.
 
I left HealthCast in February 2003, to pursue a fantastic opportunity with Healthwise. Healthwise provides content to organizations and informs people to help them make better health decisions, creating Prescription-Strength Information™ tools that doctors trust and consumers use.
 
I have been working with the .NET framework since version 1.0, beta 2 and have not looked back since. Currently, I am most intrigued by the uses of the .NET framework and XML to create distributed, reusable applications.
 

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   
Questionnice control, help with a VB versionmemberchj12424 Jun '11 - 8:25 
GeneralThere's a bugmemberShukra10 Aug '10 - 16:52 
Generalhimember`christah18 Jul '10 - 16:15 
GeneralThis is a bit too buggy and overcomplicated... Follow Hanan Nachmany alternative!memberleoseccia13 Nov '07 - 22:46 
GeneralAutoCompleteComboBox at design timememberdgpdgp15 Aug '06 - 22:10 
GeneralGreat worksussLars Hackstein7 Jul '04 - 14:05 
GeneralA simple and elegant alternativememberHanan Nachmany6 Jun '04 - 3:58 
GeneralRe: A simple and elegant alternativememberMatt Berther4 Sep '04 - 10:05 
GeneralRe: A simple and elegant alternativesussTracey22 Sep '04 - 6:08 
GeneralRe: A simple and elegant alternativememberRob.5 Dec '04 - 11:55 
GeneralRe: A simple and elegant alternativememberbaranils29 Feb '08 - 13:29 
GeneralIgnores first charactermemberaneedham@sucden.co.uk2 Dec '03 - 5:56 
GeneralRe: Ignores first charactermembertimothy d burgess20 Apr '04 - 5:39 
GeneralComboBox ErrormemberDonny Lai1 Sep '03 - 18:23 
GeneralRe: ComboBox ErrorsussValdis Iljuconoks8 Sep '03 - 9:46 
GeneralRe: ComboBox ErrormemberMatt Berther10 Sep '03 - 16:08 
GeneralRe: ComboBox ErrormemberDonny Lai10 Sep '03 - 16:45 
GeneralRe: ComboBox ErrormemberMatt Berther10 Sep '03 - 17:42 
GeneralRe: ComboBox ErrormemberDonny Lai10 Sep '03 - 17:43 
GeneralRe: ComboBox ErrormemberMatt Berther16 Sep '03 - 10:47 
GeneralRe: ComboBox ErrormemberMatt Berther18 Sep '03 - 21:34 
GeneralRe: ComboBox ErrormemberDonny Lai20 May '04 - 17:54 
GeneralRe: ComboBox ErrormemberPrasertHong12 Jul '06 - 1:02 
GeneralDatasourcememberFabricio30 Aug '03 - 13:35 
GeneralRe: DatasourcesussAnonymous8 Sep '03 - 9:27 

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

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130516.1 | Last Updated 15 Apr 2003
Article Copyright 2003 by Matt Berther
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid