Autocomplete ComboBox (Windows Mobile)


Here is the code by which you can get functionality of Auto complete combobox in normal combobox.

Just set your combobox's DropDownStyle to System.Windows.Forms.ComboBoxStyle.DropDown and add the following code in KeyUp event of the same combobox.

private void cbo_KeyUp(object sender, KeyEventArgs e)
{
    string text = null;
    int num = -1;
    object item = null;
    string str3 = null;
    ComboBox box = (ComboBox)sender;
    switch (e.KeyCode)
    {
        case Keys.Left:
        case Keys.Up:
        case Keys.Right:
        case Keys.Down:
        case Keys.Delete:
        case Keys.Back:
        return;
        default:
            text = box.Text;
            for (int i = 0; i = 0)
            {
                item = box.Items[num];
                str3 = box.GetItemText(item).Substring(text.Length);
                box.Text = text + str3;
                box.SelectionStart = text.Length;
                box.SelectionLength = str3.Length;
                box.SelectedItem = item;
            }
    }
}

That's it!!!!!

Happy Windows Mobile Codding....


Similar Articles