level 1
Private Sub Command1_Click()
Timer1.Enabled = True
End Sub
Private Sub Form_Load()
Dim a As Integer
Command1.Caption = "预测"
Timer1.Interval = 100
Timer1.Enabled = False
End Sub
Private Sub Timer1_Timer()
Me.Caption = Time
a = Int(Rnd * 20) + 1
Label1.Caption = a
End Sub
2010年11月13日 04点11分