Add 2 list boxes to your form
on list box1 set OLEDragMode to auto and set OLEDropMode to None
Second listb SetOLEDropMode to Manual
Add the following code in the OLEDragDrop event fot List 2
Private Sub List2_OLEDragDrop(Data As DataObject, Effect As Long, Button As Integer, Shift As Integer, X As Single, Y As Single)
Dim i As Integer
List2.AddItem Data.GetData(1)
List1.RemoveItem (List1.ListIndex)
End Sub