找回密码
 立即注册
搜索

Export Power Point Note

6
回复
247
查看
[复制链接]

14

主题

203

帖子

32

幻币

一流武者

Rank: 3Rank: 3

积分
259
QQ
2016-4-12 12:06:07 显示全部楼层 |阅读模式
Sub ExportNotesText() Dim oSlides As Slides Dim oSl As Slide Dim oSh As Shape Dim strNotesText As String Dim strFileName As String Dim intFileNum As Integer Dim lngReturn As Long ' Get a filename to store the collected text strFileName = InputBox("Enter the full path and name of file to extract notes text to", "Output file?") ' did user cancel? If strFileName = "" Then Exit Sub End If ' is the path valid? crude but effective test: try to create the file. intFileNum = FreeFile() On Error Resume Next Open strFileName For Output As intFileNum If Err.Number  0 Then ' we have a problem MsgBox "Couldn't create the file: " & strFileName & vbCrLf _ & "Please try again." Exit Sub End If Close #intFileNum ' temporarily ' Get the notes text Set oSlides = ActivePresentation.Slides For Each oSl In oSlides For Each oSh In oSl.NotesPage.Shapes If oSh.PlaceholderFormat.Type = ppPlaceholderBody Then If oSh.HasTextFrame Then If oSh.TextFrame.HasText Then strNotesText = strNotesText & "Slide: " & CStr(oSl.SlideNumber) & vbCrLf _ & oSh.TextFrame.TextRange.Text & vbCrLf & vbCrLf End If End If End If Next oSh Next oSl ' now write the text to file Open strFileName For Output As intFileNum Print #intFileNum, strNotesText Close #intFileNum ' show what we've done lngReturn = Shell("NOTEPAD.EXE " & strFileName, vbNormalFocus)End Sub
PPT学习论坛
回复

使用道具 举报

19

主题

228

帖子

41

幻币

一流武者

Rank: 3Rank: 3

积分
288
QQ
2016-4-12 13:14:01 显示全部楼层
可以翻译成中文吗?俺E文学得不好!
PPT学习论坛
回复 支持 反对

使用道具 举报

15

主题

208

帖子

44

幻币

一流武者

Rank: 3Rank: 3

积分
273
QQ
2016-4-12 14:33:54 显示全部楼层
你有见过用中文写的VBA吗?
PPT学习论坛
回复 支持 反对

使用道具 举报

12

主题

207

帖子

49

幻币

一流武者

Rank: 3Rank: 3

积分
265
QQ
2016-4-12 15:01:42 显示全部楼层
请问,这是做什么用的?如何使用??谢谢。
PPT学习论坛
回复 支持 反对

使用道具 举报

15

主题

239

帖子

41

幻币

一流武者

Rank: 3Rank: 3

积分
285
QQ
2016-4-12 15:30:53 显示全部楼层
导出批注的
PPT学习论坛
回复 支持 反对

使用道具 举报

18

主题

198

帖子

44

幻币

豪侠武师

Rank: 4

积分
550
QQ
2016-4-12 16:19:21 显示全部楼层
哦,难怪,我运行了好几次,都是空白文档。呵呵。谢谢。
PPT学习论坛
回复 支持 反对

使用道具 举报

21

主题

225

帖子

62

幻币

一流武者

Rank: 3Rank: 3

积分
292
QQ
2016-4-12 16:31:10 显示全部楼层
那是做啥子的
PPT学习论坛
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册