- 133
- 0
- 约1.99万字
- 约 15页
- 2016-11-27 发布于河南
- 举报
ppt实用宏
ppt实用宏
倒计时宏代码
Option Explicit
Public Declare Sub Sleep Lib kernel32 (ByVal dwMilliseconds As Long)
Sub Tmr()
Just in the eventuality that you click the start button twice
isRunning stores the current state of the macro
TRUE = Running; FALSE = Idle
Static isRunning As Boolean
If isRunning = True Then
End
Else
isRunning = True
Dim TMinus As Integer
Dim xtime As Date
xtime = Now
On Slide 1, Shape 1 is the textbox
With ActivePresentation.Slides(1)
.Shapes(2).TextFrame.TextRange.Text = Ladies Gentlemen. vbCrLf _
Please be seated. We are about to begin.
With .Shapes(1)
Countdown in seconds
TMinus = 120
Do While (TMinus -1)
Suspend program execution for 1 second (1000 milliseconds)
Sleep 1000
xtime = Now
.TextFrame.TextRange.Text = Format(TimeValue(Format(Now, hh:mm:ss)) - _
TimeSerial(Hour(Now), Minute(Now), Second(Now) + TMinus), hh:mm:ss)
TMinus = TMinus - 1
Very crucial else the display wont refresh itself
DoEvents
Loop
End With
3-2-1-0 Blast off and move to the next slide or any slide for that matter
SlideShowWindows(1).View.GotoSlide (2)
isRunning = False
.Shapes(2).TextFrame.TextRange.Text = Click here to start countdown
End
End With
End If
End Sub
批量删除幻灯片备注之宏代码
Sub DeleteNote()
Dim actppt As Presentation
Dim pptcount As Integer
Dim iChose As Integer
Dim bDelete As Boolean
Dim sMsgBox As String
Dim dirpath As String
Dim txtstring As String
sMsgBox = 运行该宏之前,请先作好备份!继续吗?
iChoice = MsgBox(sMsgBox, vbYesNo, 备份提醒)
If iChoice = vbNo Then
Exit Sub
End If
sMsgBox = 导出备注后,需要删除PPT备注吗?
iChoice = MsgBox(sMsgBox, vbYesNo, 导出注释)
If iChoice = vbNo Then
bDelete = False
Else
bDelete = True
End If
Set actppt = Application.ActivePresentation
dirpath = actppt.Path \ actppt.Name 的备注.txt
pptcount = actppt.Slides.Count
打开书写文件
Set fs = CreateObject(Scripting.FileSystemObject)
Set a = fs.CreateTextFile(dirpath, True)
遍历ppt
With actppt
For i = 1 To pptcount
txtstring = .Slides(i).NotesPage.Shapes.Placeholders(2).TextFrame.TextRange.Text
If (bDelete) Then
.Slides(i).NotesPage.Shape
您可能关注的文档
最近下载
- 求职简历模板免费下载-简历模板免费下载-word.docx VIP
- 2024年医院行风建设总结.pdf VIP
- FR 6011 说明书.pdf VIP
- 2025年中考物理总复习:压强(讲义)解析版.pdf VIP
- 酸碱盐-初升高化学知识复习讲义(人教版).pdf VIP
- 农业开发生态养鸡项目实施方案(有全套附表附图).doc VIP
- 劳动合同范本(2026年通用版,带试用期条款).docx VIP
- 医疗器械软件注册审查指导原则(2022年修订版)20220309.pdf VIP
- 老电影收藏1(1949—1966).doc VIP
- 西南18J517_厨房_卫生间_浴室设施_标准图集.pdf VIP
原创力文档

文档评论(0)