-
Hi
I'm working on a prject - game, where a balloon is falling down and you have to control it. Balloon is an Image object, that is falling down:
Private Sub Timer1_Timer()
Image1.Top = Image1.Top + 15
End Sub
While the ballon is falling down, the picture of it is blinking. How can I solve this problem? Thanks for your help.
Jure
-
You mean flickering I suppose... Well don't use a control, draw the sprite using BitBlt or DDraw instead :) (Detailled information about graphics programming on my homepage)