Private Sub List1_OLEDragDrop(Data As DataObject, Effect As Long, Button As Integer, Shift As Integer, X As Single, Y As Single)
on error goto errorhandle
dim i as integer
i=1
do
List1.AddItem Data.Files(i)
i=i+1
loop
exit sub
errorhandle: 'do nothing
End Sub