How can a change event be captured in a list box, when you re-select the same item.
In this case, there are 2 list boxes.
1. After selecting an item in the first listbox, there is a change event. OK.
2. Then select an item in the second listbox, there is a change event. OK.
3. If I go back to the first, select the same item, there is no change event.
How can 3. be solved?
In this case, there are 2 list boxes.
1. After selecting an item in the first listbox, there is a change event. OK.
2. Then select an item in the second listbox, there is a change event. OK.
3. If I go back to the first, select the same item, there is no change event.
How can 3. be solved?
VBA Code:
Private Sub ListBox1_Change()
MsgBox "changed 1"
End Sub
Private Sub ListBox2_Change()
MsgBox "changed 2"
End Sub