-
Moving Picture .....??
I use this code :
Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
If KeyCode = vbKeyLeft Then
image1.Left = image1.Left - 50
End If
End Sub
But image so vibrate.......
How can I escape this ?
:confused: :confused: :confused: :confused: :confused:
-
Sorry, what do you mean with "image so vibrate"? Does it flicker too much?
-
Yes....Yes
Yes_
Picture flicker too much...
-
i got that
the same happened to me when i used pictures in boxes.
pictures are unreliable to move using .left or .top try to find a new method.
but if you must use .left or .top try not to use any timers this was one problem i had when i tried this.
one other method....BitBlt
-
Yeah, BitBlt is how people make professional games (WinQuake was made with it ;) )
It might be a bit hard for a begginer. If you don't wanna use BitBlt you'll have to live with that flickering :)