- Home
·
- String Manipulation
·
- This code allows you to click on a checkbox style list and add all the checked items to another lis
This code allows you to click on a checkbox style list and add all the checked items to another lis
This code allows you to click on a checkbox style list and add all the checked items to another listbox, or array. Does not need command
Rate This code allows you to click on a checkbox style list and add all the checked items to another lis
(1(1 Vote))
List2.Clear
For i = 0 To List1.ListCount - 1
If List1.Selected(i) = True Then
List2.AddItem List1.List(i)
End If
Next i
End Sub
This code allows you to click on a checkbox style list and add all the checked items to another lis Comments
No comments yet — be the first to post one!
Post a Comment