2022-06-13 VBA代码实现word文档批量转pdf

VBA代码:

代码第7行,文件位置需要改成自己需要转换的文件所在路径。

复制代码
 1 Sub doc2pdf()
 2 '
 3 ' doc2pdf 宏
 4 '
 5 '
 6 Dim file As String
 7 ChangeFileOpenDirectory "C:\Users\jskzls\Desktop\测试\"   '文件夹位置
 8 
 9 file = Dir("*.doc")
10 Do Until file = ""
11 Documents.Open FileName:=file
12 FileName = ActiveDocument.Name
13 BaseName = Left(FileName, InStrRev(FileName, ".") - 1)
14 ActiveDocument.ExportAsFixedFormat OutputFileName:= _
15 BaseName & ".pdf", ExportFormat:=wdExportFormatPDF, _
16 OpenAfterExport:=False, OptimizeFor:=wdExportOptimizeForPrint, Range:= _
17 wdExportAllDocument, From:=1, To:=1, Item:=wdExportDocumentContent, _
18 IncludeDocProps:=True, KeepIRM:=True, CreateBookmarks:= _
19 wdExportCreateNoBookmarks, DocStructureTags:=True, BitmapMissingFonts:= _
20 True, UseISO19005_1:=False
21 ActiveDocument.Close
22 
23 file = Dir
24 Loop
25 
26 End Sub
复制代码

 

posted @   admin-xiaoli  阅读(1043)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 10年+ .NET Coder 心语 ── 封装的思维:从隐藏、稳定开始理解其本质意义
· 【设计模式】告别冗长if-else语句:使用策略模式优化代码结构
· 提示词工程——AI应用必不可少的技术
· 字符编码:从基础到乱码解决
· 地球OL攻略 —— 某应届生求职总结
点击右上角即可分享
微信分享提示