Hi all,
I want to move selected items from one ListBox to the other. Like
will move all items from ListBox1 to ListBox2. Similarly, I want to move only selected (multiple selection) items from ListBox1 to ListBox2.VB Code:
ListBox2.AddRange(ListBox1.Items)
Well, I would like to mention that unfortunatelyis not working.VB Code:
ListBox2.AddRange(ListBox1.SelectedItems)
Pls guide.
Regards,
Prakash




Reply With Quote