VB “秒錶”窗體中有兩個按鈕“開始/停止”按鈕

塵封的記憶0發表於2016-03-23

Dim st, et, pt
Private Sub Command1_Click()

If Command1.Caption = "開始" Then
st = Now
Text1 = Format(st, "hh:mm:ss")
Command1.Caption = "結束"
Else
et = Now
Text2 = Format(et, "hh:mm:ss")
Command1.Caption = "開始"
pt = et - st
Text3 = Format(pt, "hh:mm:ss")
End If

End Sub
就是利用caption這個變數來反覆變換各種引數以致於實現秒錶的開始或者結束功能



相關文章