Private sngX As Single, sngY As Single
Private Sub Image1_MouseDown( _
Button As Integer, Shift As Integer _
, X As Single, Y As Single)
If Button = 1 Then
sngX = X
sngY = Y
End If
End Sub
Private Sub Image1_MouseMove( _
Button As Integer, Shift As Integer _
, X As Single, Y As Single)
If Button = 1 Then
Image1.Left = Image1.Left + (X - sngX)
Image1.Top = Image1.Top + (Y - sngY)
End If
End Sub