Click here to Skip to main content
Licence 
First Posted 14 Apr 2003
Views 200,422
Bookmarked 78 times

A C# auto complete combo box

By | 14 Apr 2003 | Article
A C# implementation of an auto complete combo box, based on Chris Maunder's MFC code

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

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
Questionnice control, help with a VB version Pinmemberchj1248:25 24 Jun '11  
GeneralThere's a bug PinmemberShukra16:52 10 Aug '10  
Generalhi Pinmember`christah16:15 18 Jul '10  
GeneralThis is a bit too buggy and overcomplicated... Follow Hanan Nachmany alternative! Pinmemberleoseccia22:46 13 Nov '07  
GeneralAutoCompleteComboBox at design time Pinmemberdgpdgp22:10 15 Aug '06  
GeneralGreat work PinsussLars Hackstein14:05 7 Jul '04  
GeneralA simple and elegant alternative PinmemberHanan Nachmany3:58 6 Jun '04  
GeneralRe: A simple and elegant alternative PinmemberMatt Berther10:05 4 Sep '04  
GeneralRe: A simple and elegant alternative PinsussTracey6:08 22 Sep '04  
GeneralRe: A simple and elegant alternative PinmemberRob.11:55 5 Dec '04  
GeneralRe: A simple and elegant alternative Pinmemberbaranils13:29 29 Feb '08  
GeneralIgnores first character Pinmemberaneedham@sucden.co.uk5:56 2 Dec '03  
GeneralRe: Ignores first character Pinmembertimothy d burgess5:39 20 Apr '04  
GeneralComboBox Error PinmemberDonny Lai18:23 1 Sep '03  
GeneralRe: ComboBox Error PinsussValdis Iljuconoks9:46 8 Sep '03  
GeneralRe: ComboBox Error PinmemberMatt Berther16:08 10 Sep '03  
GeneralRe: ComboBox Error PinmemberDonny Lai16:45 10 Sep '03  
GeneralRe: ComboBox Error PinmemberMatt Berther17:42 10 Sep '03  
GeneralRe: ComboBox Error PinmemberDonny Lai17:43 10 Sep '03  
GeneralRe: ComboBox Error PinmemberMatt Berther10:47 16 Sep '03  
GeneralRe: ComboBox Error PinmemberMatt Berther21:34 18 Sep '03  
GeneralRe: ComboBox Error PinmemberDonny Lai17:54 20 May '04  
GeneralRe: ComboBox Error PinmemberPrasertHong1:02 12 Jul '06  
GeneralDatasource PinmemberFabricio13:35 30 Aug '03  
GeneralRe: Datasource PinsussAnonymous9:27 8 Sep '03  

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

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

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