Copy this function into your module and call it passing the prooper values.
Private Sub DrawCircle(ByVal obj As Object, ByVal cx As Single, ByVal cy As Single, ByVal radius As Single, ByVal num_segments As Integer)
Const PI = 3.14159265
Dim X As Single
Dim Y As Single
Dim theta As Single
Dim dtheta As Single
Dim seg As Integer
dtheta = 2 * PI / num_segments
obj.CurrentX = cx + radius
obj.CurrentY = cy
theta = 0
For seg = 1 To num_segments
theta = theta + dtheta
obj.Line -(cx + radius * Cos(theta), cy + radius * Sin(theta))
Next seg
End Sub
Regards,
______
Jomac.