To draw the circle slowly what I have so far is:
Dim Radian As Double, PixelX As Single, PixelY As Single, Angle As Single
Under MouseDown to activate it I have - For Angle = 0 To 359 Step 0.5
Radian = Angle * (3.1415926 / 180)
PixelX = CentreX + Cos(Radian) * Radius
PixelY = CentreY + Cos(Radian) * Radius
PSet (PixelX, PixelY)
Next Angle
In Form Load I have
CentreX = 100
CentreY = 100
I did this to get it away from the side.

All it does is print one dot in the upper - left of the form.
Still hoping to learn how to make this work.

Sparky84