This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

DEVELOPERS FORUM - Is that Possible to Type on text field and together search on dropdown with same keyword

AbhishekSrivastava - Tuesday, March 29, 2016 6:17 AM:

Project Name is a text field  and Similar Project Name is dropdown field.

when i type on Project Name field then from same keword autosearch on Similar Project Dropdown field

Like :

 

private void textBox5_TextChanged(object sender, EventArgs e)
        {
            comboBox1.Text = textBox5.Text;
        }

So could you please help me out of  this

Thanks

Abhishek Srivastava