Q1
I want to be able to reorder the listbox values in listbox2
How? What order do you want or do you mean you want to move the selected item up/down the list when clicked?
Q2
If an item is selected, then removing it will cause the ListBox to select the item above. Simple solution is unselect it before moving to the other listbox.
If the listbox is not going to be MultiSelect you can get away with referring to the ListIndex to copy/remove - that'll do away with the loop and make this issue go away as as consequence.
Q3
however I'm not that confident with cycling through the whole list of items which will be in Listbox2
But you cycle though the whole list of items in ListBox1. Can you expand on this?
Bookmarks