|
|
Title | Make two lists pick corresponding selections |
Keywords | ListBox, select, pick, corresponding |
Categories | Controls |
|
|
Set the ListIndex property of the each list when the other's changes.
|
|
Private Sub List1_Click()
List2.ListIndex = List1.ListIndex
End Sub
Private Sub List2_Click()
List1.ListIndex = List2.ListIndex
End Sub
|
|
|
|
|
|