draws random circle
draws random circle
Rate draws random circle
(1(1 Vote))
End
End Sub
Private Sub Form_Load()
Form1.WindowState = 2
End Sub
Private Sub Form_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
If Button = 2 Then
End
End If
End Sub
Private Sub Timer1_Timer()
For i = 1 To 4000 Step 2
'Dim A, B, C As Integer
A = Rnd(200)
B = Rnd(200)
C = Rnd(200)
Form1.Circle (Form1.ScaleWidth / 2, Form1.ScaleHeight / 2), i, RGB(A * 255, B * 255, C * 255)
Next i
End Sub
draws random circle Comments
No comments yet — be the first to post one!
Post a Comment