Hi all,

I want to move selected items from one ListBox to the other. Like
VB Code:
  1. ListBox2.AddRange(ListBox1.Items)
will move all items from ListBox1 to ListBox2. Similarly, I want to move only selected (multiple selection) items from ListBox1 to ListBox2.

Well, I would like to mention that unfortunately
VB Code:
  1. ListBox2.AddRange(ListBox1.SelectedItems)
is not working.

Pls guide.

Regards,

Prakash