How to move the items from one listbox to another listbox
问题 Using VB6 In a form, 2 listbox name as list1, list2 and 4 buttons name >, >>, <, << I want to add the list1 selected items to list2 I want to remove the selected items from list2 to list1 How to do this. Need Vb6 code Help 回答1: Generally, your approach will be to loop through the index values of all items in your source ListBox. If you're moving all items on the ListBox then for each item you'd call the AddItem method on your destination ListBox (using the index value to retrieve the text of