- Home
·
- Miscellaneous
·
- Move contents of one listbox into another. All you have to type is one line of code!
Move contents of one listbox into another. All you have to type is one line of code!
Move contents of one listbox into another. All you have to type is one line of code!
Rate Move contents of one listbox into another. All you have to type is one line of code!
(1(1 Vote))
Public Function MoveListBox(list1 As ListBox, list2 As ListBox)
For i = 0 To list1.ListCount
list2.AddItem list1.List(i)
Next i
list1.Clear
End Function
Move contents of one listbox into another. All you have to type is one line of code! Comments
No comments yet — be the first to post one!
Post a Comment