標題:
VBA timer
[打印本頁]
作者:
sunnyso
時間:
2014-3-10 23:05
標題:
VBA timer
分享
[attach]17729[/attach]
[attach]17730[/attach]
Sub Start_Timer()
Application.OnTime Now + TimeValue("00:00:01"), "Increment_count"
End Sub
Sub Increment_count()
Range("A3").Value = Range("A3").Value + 1
Start_Timer
End Sub
Sub Stop_Timer()
Application.OnTime Now + TimeValue("00:00:01"), "Increment_count", schedule:=False
End Sub
複製代碼
歡迎光臨 麻辣家族討論版版 (http://forum.twbts.com/)