PDA

Click to See Complete Forum and Search --> : Blink problem


JureVI
Jan 12th, 2001, 10:01 AM
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

Fox
Jan 12th, 2001, 10:53 AM
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)