Option Explicit
Private Sub Form_Activate()
Me.Line (-360, 0)-(360, 0)
Me.Line (0, 360)-(0, -360)
Dim i As Integer
For i = -360 To 360 Step 60
Me.CurrentX = i
Me.CurrentY = 0
Print CStr(i)
Me.Line (i, 0)-(i, 20)
Next
End Sub
Private Sub Form_Load()
Me.Scale (-360, 360)-(360, -360)
End Sub