Re: 2 Dependent ListBoxes!
If you always have the same amount of items and the corresponding items have the same ListIndex you can easily do it this way:
VB Code:
Private Sub List1_Click()
List2.ListIndex = List1.ListIndex
End Sub
To delete the items you do pretty much the same way. Let's say you have a Command Button, named cmdDelete, which will delete the selected item from both lists.
VB Code:
Private Sub cmdDelete_Click()
List2.RemoveItem List1.ListIndex
List1.RemoveItem List1.ListIndex
End Sub