Here is my scenario:
- I have a two checklist-boxes on Winform (i.e. Name and Nickname checklist boxes)
- If user selects Name in first checklist-box then corresponding Nickname should get selected automatically in second checklist box
- If user selects Nickname in second checklist-box then corresponding Name should get selected automatically in first checklist-box
Can any one help how to achieve this ?
You should use the SelectedIndexChanged event from each checklist-box and search in the items collections from the other checklist-box from the correspondent value. The match you should get it from your database or something like that.
hope it help..