PowerPoint中如何设置现在时间并实时更新

暗香疏影 创作者

在工作中,PowerPoint做实时时间可以通过Add-in也可以通过VB来做,下面我用VB来做,本文最后还有做好的模板文件。

PowerPoint 设置

Step 1: 新建文本框并在文本框输入”–:–:–”

Step 2: 在Home里面找到Find下面的Select并选择Selection Pane
Step2

Step 3: 在右方Selection选择双击Textbox的名字并更名为ShpClock
Step3

Step 4: 去Options添加Developer Tab。
Step4

Visual Basic设置

Step 5: 点击developer Tab然后点击Visual Basic设置
Step5

Step 6: 在Microsoft Visual Basic for Applcations打开后点击Insert–>Module

Step 7: 在输入代码页面输入如下代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
Public clock As Boolean
Public currenttime, currentday As String


Sub Pause()
Dim PauseTime, start
PauseTime = 1
start = Timer
Do While Timer < start + PauseTime
DoEvents
Loop
End Sub

Sub StartClock()
clock = True
Do Until clock = False
On Error Resume Next
currenttime = Format((Now()), "hh:mm:ss")
currenttime = Mid(currenttime, 1, Len(currenttime) - 0)
ActivePresentation.Slides(SlideShowWindows(1).View.CurrentShowPosition).Shapes("shpClock").TextFrame.TextRange.Text = currenttime
Pause
Loop
End Sub

Sub OnSlideShowPageChange(ByVal objWindow As SlideShowWindow)
clock = False
ActivePresentation.Slides(SlideShowWindows(1).View.CurrentShowPosition).Shapes("shpClock").TextFrame.TextRange.Text = "--:--:--"
End Sub

Sub OnSlideShowTerminate()
clock = False
End Sub

Step 8: 关闭VBA窗口,点击文本框,然后找到Insert–>Action并将Action Setting内的Mouse Click Tab选择Run macro并选择为StartClock
Step8

Step 9: 记得另存为启用宏的PowerPoint PPTM格式
Step9

Step 10: 点击时间即可激活实时时间

其他资料

1. Microsoft时间代码参考
2. 文件样本下载

  • 标题: PowerPoint中如何设置现在时间并实时更新
  • 作者: 暗香疏影
  • 创建于 : 2020-10-12 00:00:00
  • 更新于 : 2020-10-12 00:00:00
  • 链接: https://blog.23ikr.com/2020/10/12/2020-10-12-PowerPoint-Add-Live-Clock/
  • 版权声明: 本文章采用 CC BY-NC-SA 4.0 进行许可。
评论
目录
PowerPoint中如何设置现在时间并实时更新