Here it goes:

Standard exe with 1 form
Add Shape1 and Timer1 and this code in Form1:

Private Sub Form_Load()
Timer1.Interval = 25
Timer1.Enabled = True
Shape1.FillStyle = 0
Me.WindowState = vbMaximized

End Sub

Private Sub Timer1_Timer()
Call Shape1.Move(Shape1.Left + 15, Shape1.Top + 15)
DoEvents

End Sub

What would be the simplest solution to getting rid of the flicker. This is not for a game, but I know you guys would be the best to answer me. Can you post code pls.

Thankx for the help