hi guys,,
i hv faced some problem with following code. i m trying to copy a listview item to the another listview... i was actually lookin for Clone method but its not there !!!!

VB Code:
  1. Dim checkedItem As ListView.CheckedListViewItemCollection
  2.         checkedItem = lstAll.CheckedItems
  3.  
  4.         For Each item As ListViewItem In checkedItem
  5.             lstCommon.Items.Add(item)
  6.         Next

i got following Error :

Cannot add or insert the item '.8bs' in more than one place. You must first remove it from its current location or clone it.