0

假设您想要一个按钮,用户可以单击该按钮并将当前文件的副本另存为 PDF(文档):

Application.ActiveDocument.SaveAs2 fileName:="fileName.pdf", FileFormat:=wdFormatPDF

这很好用,用户会看到一个保存对话框,选择一个位置并保存文件,但是有一些事情是不正确的:

在此处输入图像描述

显示的类型与 VBA 中指定的类型不匹配,这怎么可能是正确的?即使在“另存为类型”下拉菜单中将“DOCX”显示为文件类型后,它仍然可以毫无问题地保存为“PDF”类型。此外,“fileName.pdf”也没有放在“文件名”框中,就好像对话框不知道 VBA 代码中设置的选项一样(这篇文章中也引用了同样的问题)。

更新 1

在再次查看我的代码后,我现在意识到 SaveAs2 方法没有显示对话框菜单,代码的正确版本(简化)可以描述为:

Dim selected As String: selected = Application.FileDialog(msoFileDialogSaveAs).Show()
Dim filePath As String

If selected <> 0 Then
    filePath = Application.FileDialog(msoFileDialogSaveAs).SelectedItems(1)
    Application.ActiveDocument.SaveAs2 fileName:=Split(filePath, ".")(0), FileFormat:=wdFormatPDF
End If

那么真正的问题(我猜)是如何让“Application.FileDialog”在“另存为类型”下拉菜单下显示您希望保存的正确类型,@PatricK 已经回答了这个问题。感谢大家的帮助,对于这个问题最初令人困惑的性质,我深表歉意。

4

1 回答 1

1

SaveAs2老实说,我很惊讶会给你带来一个提示 - 只有一个新文件.Save才会给你带来那个提示。

如果您想获得与该提示类似的内容,请使用类型为 msoFileDialogSaveAs的Application.FileDialog

使用下面的代码(也许作为插件更适合):

Option Explicit

Sub MySaveAs()
    Dim oPrompt As FileDialog, i As Long, sFilename As String
    Set oPrompt = Application.FileDialog(msoFileDialogSaveAs)
    With oPrompt
        ' Find the PDF Filter from Default Filters
        For i = 1 To .Filters.Count
            'Debug.Print i & " | " & .Filters(i).Description & " | " & .Filters(i).Extensions
            ' Locate the PDF filter
            If InStr(1, .Filters(i).Description, "PDF", vbTextCompare) = 1 Then
                .FilterIndex = i
                Exit For
            End If
        Next
        ' Change the title and button text
        .Title = "Saving """ & ActiveDocument.Name & """ to PDF format"
        .ButtonName = "Save to PDF"
        ' Default name
        .InitialFileName = ActiveDocument.Name
        ' Show the Prompt and get Filename
        If .Show = -1 Then
            sFilename = .SelectedItems(1)
            Debug.Print "Final filename: " & sFilename
            ' Save the file as PDF
            ActiveDocument.SaveAs2 sFilename, wdFormatPDF
        End If
    End With
    Set oPrompt = Nothing
End Sub

截图示例:
结果文件对话框

于 2016-04-05T03:09:30.453 回答