Can someone please show me how to select an item from a listview box and add it to another listview box. Both listview boxes have three columns.
Printable View
Can someone please show me how to select an item from a listview box and add it to another listview box. Both listview boxes have three columns.
If you want to add selected Item from ListView1 to ListView2
Try the following
set LItem = ListView2.listitems.add( ,ListView1.SelectedItem.Key, ListView1.SelectedItem.Text)
LItem.SubItems(1) = ListView1.SubItems(1)
LItem.SubItems(2) = ListView1.SubItems(2)
Hope it works
moinkhan