Compare Two check Boxes and Filter the changed data in first listbox in a third listbox.
Compare Two check Boxes and Filter the changed data in first listbox in a third listbox.
API Declarations
______________________________
Dim i as integer
Dim j as integer
Rate Compare Two check Boxes and Filter the changed data in first listbox in a third listbox.
(2(2 Vote))
For J = i To List1.ListCount - 1
If List1.Selected(i) = True And List2.Selected(J) = False Then list3.AddItem List2.List(i): List3.ItemData(LstRollnohide1.NewIndex) = List1.ItemData(i): 'Ur update or insert command here
If List1.Selected(i) = False And List2.Selected(J) = True Then list3.AddItem List2.List(i): List3.ItemData(LstRollnohide1.NewIndex) = List1.ItemData(i): 'Ur update or insert command here
Exit For
Next J
Next i
Compare Two check Boxes and Filter the changed data in first listbox in a third listbox. Comments
No comments yet — be the first to post one!
Post a Comment