Dear Fellow Developers,
I am attempting to move an image with the following event callback:
Private Sub Image1_MouseMove(Button As Integer, Shift As Integer, X As
Single, Y As Single)
If Button = 1 Then
Image1.Left = X + Image1.Left - 400
Image1.Top = Y + Image1.Top - 400
End If
End Sub
Simple stuff, but there seems to be a flash when one image is moved over
another. I do not believe this to be a palette issue because I load the
palette before run, at design time. It seems more like to be a paint order
issue.
I'm sure this is an old question but I cannot find an answer...
Any help is appreciated.
Clay