vb6.0 倒计时

前端之家收集整理的这篇文章主要介绍了vb6.0 倒计时前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
Dim t
Dim start As Boolean
Private Sub Command1_Click()
   If start = False Then
      t = Val(Text1) * 3600 + Val(Text2) * 60 + Val(Text3)
      start = True
   End If
   Timer1.Enabled = True
   Command3.Enabled = True
End Sub
Private Sub Command2_Click()
   Timer1.Enabled = False
End Sub
Private Sub Command3_Click()
   t = Val(Text1) * 3600 + Val(Text2) * 60 + Val(Text3)
   Timer1.Enabled = True
End Sub
Private Sub Command4_Click()
   End
End Sub
Private Sub Form_Load()
   Timer1.Enabled = False
   start = False
   Timer1.Interval = 1000
   Label5.BackColor = vbYellow
   Label1.Caption = "小时"
   Label2.Caption = "分"
   Label3.Caption = "秒"
   Label4.Caption = "倒计时"
   Label5.Caption = ""
   Text1.Text = ""
   Text2.Text = ""
   Text3.Text = ""
   Command1.Caption = "开始"
   Command2.Caption = "暂停"
   Command3.Caption = "重新开始"
   Command4.Caption = "退出"
   Command3.Enabled = False
End Sub
Private Sub Timer1_Timer()
   If t = 0 Then
      Timer1.Enabled = False
      MsgBox ("时间到")
      start = False
   Else
      t = t - 1
   End If
   Label5.Caption = Format(Trim(Str(t \ 3600)),"00") & ":" & Format(Trim(Str((t Mod 3600) \ 60)),"00") & ":" & Format(Trim(Str(t Mod 3600) Mod 60),"00")
End Sub
原文链接:https://www.f2er.com/vb/258568.html

猜你在找的VB相关文章