Click here to Skip to main content
15,896,201 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi friends
what is the method for getting all related value when typing a single letter in the combobox like in google search.
Posted

1 solution

Use autocomplete textbox
C#
        private void Window_Loaded(object sender, RoutedEventArgs e)
        {
AutoCompleteStringCollection l1 = new AutoCompleteStringCollection();
OleDbDataAdapter da = new OleDbDataAdapter("SELECT Name FROM name table ", Con1);
                DataSet ds = new DataSet();
                Con1.Open(); ;
                da.Fill(ds);
               
                for (int i = 0; i < ds.Tables[0].Rows.Count; i++)
                    l1.Add(ds.Tables[0].Rows[i].ItemArray[0].ToString());

                textBox1.AutoCompleteCustomSource = l1;
           }
 
Share this answer
 
Comments
baskaran chellasamy 29-Apr-13 1:57am    
how can use in combobox windows application

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900