Click here to Skip to main content
15,898,134 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
how can i search items in a combo box by the command ...where item like= '%%string' condition
Posted

try this:

where item like '" + comboBoxName.selectedItem.ToString() + "%'
 
Share this answer
 
v2
try LINQ..

C#
using System.Linq;

IEnumerable<Object> query =
        from Object item in comboBox1.Items
        where (item.ToString().ToUpper().Equals(textBox1.Text))
        select item;

        foreach (Object obj in query)
        {
             comboBox1.SelectedItem = obj;
             MessageBox.Show("Found");
        }
 
Share this answer
 
v2

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