Ok, I have:
vb Code:
Private Sub MouseDown(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs)
MDown = True
End Sub
Private Sub MouseMove(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs)
If MDown = True Then
MyBase.Item(IndexOf(sender)).Location = e.Location
End If
End Sub
Private Sub MouseUp(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs)
If MDown = True Then
MyBase.Item(IndexOf(sender)).Location = e.Location
MDown = False
End If
End Sub
It works, but I see the image everywhere when I'm dragging (In the path I'm dragging), and when I drop it drops way off where I drop it.
EDIT: Theres actually 2 paths, and the path that the image is really following is random.