1 out of 2 rated this helpful - Rate this topic

ComboBox.AutoCompleteCustomSource Property

Gets or sets a custom System.Collections.Specialized.StringCollection to use when the AutoCompleteSource property is set to CustomSource.

Namespace:  System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)
[BrowsableAttribute(true)]
public AutoCompleteStringCollection AutoCompleteCustomSource { get; set; }

Use the AutoCompleteCustomSource, AutoCompleteMode, and AutoCompleteSource properties to create a ComboBox that automatically completes input strings by comparing the prefix being entered to the prefixes of all strings in a maintained source. This is useful for ComboBox controls in which URLs, addresses, file names, or commands will be frequently entered. If there are duplicate entries in the maintained source, automatic completion behaves unpredictably.

The use of the AutoCompleteCustomSource property is optional, but you must set the AutoCompleteSource property to CustomSource in order to use AutoCompleteCustomSource.

You must use the AutoCompleteMode and AutoCompleteSource properties together.

Note Note

The operating system might limit the number of custom strings that it can display at once. For strings that contain a forward slash (/) or backward slash (\), automatic completion appends all characters only up to and including the slash.

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ
ComboBox.AutoCompleteCustomSource
$0  private void Form3_Load(object sender, EventArgs e)$0 $0        {$0 $0            Load_Autocomplete(this.comboBox1);$0 $0            $0 $0        } $0 $0$0 $0 $0 public DataTable Load_Table()$0 $0                   {$0 $0                       string sql ="Select FirstName From Table_Inf";$0 $0$0 $0 $0                       DataTable dt = new DataTable();$0 $0                       SqlConnection cmd = new SqlConnection("Wrire here your connection String");$0 $0                       cmd.Open();$0 $0                       try$0 $0                       {$0 $0                           SqlCommand comand = new SqlCommand(sql, cmd);$0 $0                           SqlDataAdapter apater = new SqlDataAdapter(comand);$0 $0                           apater.Fill(dt);$0 $0                       }$0 $0$0 $0 $0            catch (SqlException)$0 $0                       {}$0 $0                       cmd.Close();$0 $0            $0 $0                           return dt;$0 $0                       }$0 $0$0 $0 $0$0 $0 $0        private void Load_Autocomplete(ComboBox cmb)$0 $0        {$0 $0            AutoCompleteStringCollection completar = new AutoCompleteStringCollection();$0 $0              if (Load_Table().Rows.Count > 0)$0 $0            {$0 $0                for (int i = 0; i < Load_Table().Rows.Count; i++)$0 $0                {$0 $0                    completar.Add(Load_Table().Rows[i]["FirstName"].ToString());$0 $0                  $0 $0                }$0 $0            }$0 $0$0 $0 $0            cmb.AutoCompleteMode = AutoCompleteMode.Suggest;$0 $0            cmb.AutoCompleteSource = AutoCompleteSource.CustomSource;$0 $0            cmb.AutoCompleteCustomSource = completar;$0 $0$0 $0 $0            }$0