Foxtable(狐表)用户栏目专家坐堂 → 把指定文件中的所有word文档转化为pdf


  共有2329人关注过本帖树形打印复制链接

主题:把指定文件中的所有word文档转化为pdf

帅哥哟,离线,有人找我吗?
qaz17909
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:四尾狐 帖子:802 积分:9093 威望:0 精华:0 注册:2017/1/26 14:38:00
把指定文件中的所有word文档转化为pdf  发帖心情 Post By:2019/2/27 23:01:00 [显示全部帖子]

我有个文件夹,里面全部为word文档,想全部转化为pdf,代码如下,报错是什么原因?

Dim dlg As New FolderBrowserDialog
If dlg.ShowDialog = DialogResult.Ok Then
    For Each File As String In FileSys.GetFiles(dlg.SelectedPath)
        Dim rs As String = File.SubString(0,File.Length-4)
        Dim tg As String = rs & ".pdf"
        Dim app As New MSWord.Application
        try
            Dim doc = app.Documents.Open(File)
            doc.ExportAsFixedFormat(tg, MSWord.WdExportFormat.wdExportFormatPDF)
            doc.saved = True
            app.Quit
        catch ex As exception
            msgbox(ex.message)
            app.Quit
        End try
    Next
End If


 回到顶部