Hi Guys,

I have a listview control and need to drag more than one item to another listview control. The problem I have is that I can only get the Data Object to pick up the last selected item, my code is listed below is there anyway to make the data object an array which can hold the data I want to transfer ?

Dim iItem As ListItem

For Each iItem In lvItems.ListItems
If iItem.Selected = True Then
Data.SetData iItem.text, vbCFText
End If
Next
AllowedEffects = vbDropEffectMove