Difference between listbox...exchange and listbox...move?

Posted by Lee p12462 on February 04, 2009

I tried both of these and they "seem" to do the same thing (swap items corresponding to the 2 indexes passed). Is there a subtle difference (I'm sure there is) that I'm missing?

With a ListBox with 4 unique items, I'm trying:
Form1.ListBox.Items.exchange(1,2); or
Form1.ListBox.Items.move(1,2);

This swaps the 2nd and 3rd items in the listbox.

Tnx..Lee

Related articles

       

Follow Ups