1
我正在試圖創建一個計數器,該計數器在Powerpoint演示文稿的VBA中每秒增加1。這是我到目前爲止所提出的。如何在VBA中創建遞增計時器
Sub countup()
Dim index As Integer
index = 0
Do Until index > 100
index = index + 1
DoEvents
With ActivePresentation.Slides(1).Shapes(3).TextFrame.TextRange
.Text = index
End With
Loop
End Sub
此代碼增加1直到101,但它不會每秒增加1。這是在VBA的Powerpoint,所以我不能把一個計時器控制。希望你能幫忙。謝謝。