ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

搜索
EH技术汇-专业的职场技能充电站 妙哉!函数段子手趣味讲函数 Excel服务器-会Excel,做管理系统 效率神器,一键搞定繁琐工作
HR薪酬管理数字化实战 Excel 2021函数公式学习大典 Excel数据透视表实战秘技 打造核心竞争力的职场宝典
让更多数据处理,一键完成 数据工作者的案头书 免费直播课集锦 ExcelHome出品 - VBA代码宝免费下载
用ChatGPT与VBA一键搞定Excel WPS表格从入门到精通 Excel VBA经典代码实践指南
查看: 1121|回复: 4

[求助] 如何自动将word中内容生成ppt

[复制链接]

TA的精华主题

TA的得分主题

发表于 2019-11-1 18:16 | 显示全部楼层 |阅读模式
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
有时修改材料很晚,或者先生成一个基本的ppt,再进一步完善
初步想法是将一级标题生成目录,然后每个一级标题及二级标题都生成一页,可将加黑的内容自动添加到相应页中

TA的精华主题

TA的得分主题

发表于 2019-11-1 21:35 | 显示全部楼层
vba可以生成,ppt后期调整美化,需要人工进行。可以百度代码,修改一下。

TA的精华主题

TA的得分主题

 楼主| 发表于 2019-11-2 09:29 | 显示全部楼层

简单写了个测试的,还在完善,基本可以搞起来了

  1. Set ppt = VBA.CreateObject("powerpoint.application")
  2.     With ppt
  3.         .Visible = msoTrue
  4.         Dim pReport
  5.         If .presentations.Count > 0 Then
  6.             Set pReport = .presentations(1)
  7.         Else
  8.             Set pReport = .presentations.Add(True)
  9.             pReport.Slides.Add 1, 12
  10.             pReport.SaveAs "a1.pptx"
  11.         End If

  12.         'deal with word
  13.         pcount = ActiveDocument.Paragraphs.Count
  14.         For i = 1 To pcount
  15.             If ActiveDocument.Paragraphs(i).OutlineLevel = wdOutlineLevel2 Then
  16.                 Debug.Print (ActiveDocument.Paragraphs(i).Range.Text)
  17.                 Call addPPT(ActiveDocument.Paragraphs(i).Range.Text, pReport)
  18.             End If
  19.         Next
  20.         
  21.         For i = 1 To pcount
  22.             If ActiveDocument.Paragraphs(i).OutlineLevel = wdOutlineLevel3 Then
  23.                 Debug.Print (ActiveDocument.Paragraphs(i).Range.Text)
  24.                 Call addPPT(ActiveDocument.Paragraphs(i).Range.Text, pReport)
  25.                 pWords = ActiveDocument.Paragraphs(i + 1).Range.Words.Count
  26.                 For j = 1 To pWords
  27.                     Debug.Print (ActiveDocument.Paragraphs(i + 1).Range.Words(j).Text)
  28.                     If ActiveDocument.Paragraphs(i + 1).Range.Words(j).Font.Underline = wdUnderlineSingle Then
  29.                         Debug.Print (ActiveDocument.Paragraphs(i + 1).Range.Words(j).Text)
  30.                         Call addPPT(ActiveDocument.Paragraphs(i + 1).Range.Words(j).Text, pReport)
  31.                     End If
  32.                 Next
  33.             End If
  34.         Next
  35.         'end deal with word
复制代码
  1. Function addPPT(ByRef content, ByRef pReport)
  2.     With pReport
  3.         Dim oSlide
  4.         cSlide = .Slides.Count
  5.         If cSlide > 0 Then
  6.             pReport.Slides.Add cSlide + 1, 12
  7.             Set oSlide = .Slides(cSlide + 1)
  8.             Set ptShape = oSlide.Shapes.AddTextbox(Orientation:=msoTextOrientationHorizontal, _
  9.                             Left:=10, Top:=17, Width:=300, Height:=50)
  10.             With ptShape.TextFrame
  11.                 .TextRange.Font.Name = "方正小标宋简体"
  12.                 .TextRange.Text = content
  13.                 .TextRange.Font.Size = 30
  14.                 .TextRange.Font.Bold = True
  15.                 .TextRange.Font.Color.RGB = RGB(Red:=255, Green:=0, Blue:=0)
  16.             End With
  17.         Else
  18.             Set oSlide = .Slides.Add(1, ppLayoutBlank)
  19.             Set ptShape = oSlide.Shapes.AddTextbox(Orientation:=msoTextOrientationHorizontal, _
  20.                             Left:=10, Top:=17, Width:=30, Height:=50)
  21.             With ptShape.TextFrame
  22.                 .TextRange.Text = "mfb"
  23.                 .TextRange.Font.Name = "楷体_GB2312"
  24.                 .TextRange.Font.Size = 30
  25.                 .TextRange.Font.Bold = True
  26.                
  27.             End With
  28.         End If
  29.     End With
  30. End Function
复制代码

TA的精华主题

TA的得分主题

发表于 2019-11-3 17:57 | 显示全部楼层

TA的精华主题

TA的得分主题

发表于 2020-7-3 22:12 | 显示全部楼层
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

手机版|关于我们|联系我们|ExcelHome

GMT+8, 2024-11-28 01:52 , Processed in 0.056276 second(s), 9 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

沪公网安备 31011702000001号 沪ICP备11019229号-2

本论坛言论纯属发表者个人意见,任何违反国家相关法律的言论,本站将协助国家相关部门追究发言者责任!     本站特聘法律顾问:李志群律师

快速回复 返回顶部 返回列表