Hi
Welcome to vbCity!
ListViews can be a bit weird and you often have to jump through hoops to do what seems like straightforward things. This is one of those cases.
Try this:
Code: Private Sub ListView1_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles ListView1.SelectedIndexChanged
Dim lvi As New ListViewItem
If ListView1.SelectedItems.Count > 0 Then
lvi = ListView1.SelectedItems(0)
Dim lvi2 As New ListViewItem
lvi2 = CType(lvi.Clone, ListViewItem)
ListView2.Items.Add(lvi2)
End If
End Sub
----------------------------------------------------------------------------
XTab : Microsoft MVP (Visual Developer - Visual Basic)
For (Sometimes) Useful Hints and Tips, Check Out
My VBCity Blog