不知道怎么做 想用FOR 循环 但这个和我之前学的C++有点出入。。。。想实现 倒记时 功能 比如说我点Command1的时候 label1显示 50 每秒自动减1请大鸟指导~~~ 谢谢~~~
Private Sub Command1_Click()
Timer1.Enabled = True
End Sub
Private Sub Form_Load()
Label1.Caption = 50Timer1.Enabled = FalseTimer1.Interval = 1000
Private Sub Timer1_Timer()
Label1.Caption = Val(Label1.Caption) - 1
非常感谢~~~~~~~~~~~~~