Posts tagged Auto Complete ComboBox
Auto Complete ComboBox – VB.NET Windows Forms
Feb 24th
Download source files – 17.6 Kb Download demo project – 9.08 Kb 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. 1: AutoComplete(ByRef cb As ComboBox, _ 2: ByVal e As System.Windows.Forms.KeyPressEventArgs, _ 3: [...]
Auto Complete ComboBox – C# Windows Forms
Feb 24th
Download source files – 8.50 Kb Download demo project – 11.0 Kb 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. 1: AutoComplete(ComboBox cb, System.Windows.Forms.KeyPressEventArgs e, bool blnLimitToList) 1: // AutoComplete 2: [...]