Click here to Skip to main content
15,889,281 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
my app have 2 list box i want when i click on list box2 item number 10.
list box1 selected item = number 10,
sorry for bad English.
Posted

1 solution

Use the following code if you want to select on ListBox2 the item having the same index of the selected one of ListBox1.

C#
private void listBox1_SelectedIndexChanged(object sender, System.EventArgs e)
{
   int cursel = listBox1.SelectedIndex;
   if ( cursel < ListBox2.Items.Count )
   {
     ListBox2.SetSelected(cursel, true);
   }
}
 
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