combo box
when i select data in combo box this value show in second combo box how can is possible.please say this process
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Amit KumarPosted Mar 15, 2016, 5:24 AM
Chandu KumawatPosted Mar 15, 2016, 5:53 AM
ali tuncerPosted Mar 15, 2016, 4:17 AM
Do they have the same items? if they do, you can do this way..
private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
{
comboBox2.SelectedItem = comboBox1.SelectedItem;
}