spin numbers
spin numbers
Rate spin numbers
(1(1 Vote))
Timer1.Enabled = True
End Sub
Private Sub Form_Load()
Randomize
End Sub
Private Sub Timer1_Timer()
Label1.Caption = Int(Rnd * 10)
Label2.Caption = Int(Rnd * 10)
Label3.Caption = Int(Rnd * 10)
c = c + 1
If c = 100 Then
Timer1.Enabled = False
c = 0
End If
End Sub
spin numbers Comments
No comments yet — be the first to post one!
Post a Comment