Posts tagged Auto Complete ComboBox

.NET

Auto Complete ComboBox – VB.NET Windows Forms

3

Introduction

This is a simple code snippet which is used to make an Auto Complete ComboBox.

Using the code

Usage: Call the subroutine from within the ComboBox’s KeyPress event handler.


AutoComplete(ByRef cb As ComboBox, ByVal e As System.Windows.Forms.KeyPressEventArgs, Optional ByVal blnLimitToList As Boolean = False)
  • cb – ComboBox used to make the Auto Complete ComboBox.

More >

.NET

Auto Complete ComboBox – C# Windows Forms

3

Introduction

This is a simple code snippet which is used to make an Auto Complete ComboBox.

Using the code

Usage: Call the function AutoComplete from within the ComboBox’s KeyPress event handler.


AutoComplete(ComboBox cb, System.Windows.Forms.KeyPressEventArgs e, bool blnLimitToList)

Code


        /// <summary>
        /// AutoComplete
        /// </summary>
        /// <param name="cb">ComboBox</param>
        /// <param name="e">KeyPressEventArgs</param>

More >

Go to Top