我的MS Word 2007模板的页脚中带有文件名。用户将打开模板并执行“另存为...”以制作其文档。

我希望页脚中显示的文件名立即更新为新文件名。

是否存在AfterSaveEvent或可用作 Hook 来启动执行更新的VBA脚本的内容?

还是有更简单的方法?

最佳答案

只需创建一个这样的宏(我相信,如果将它包含在Normal.dot中,它将更好地工作)

Sub FileSaveAs()
'
' FileSaveAs Macro
' Saves a copy of the document in a separate file
'
Dialogs(wdDialogFileSaveAs).Show

'returns the name including the .doc extension
 ChosenFileNameAndExtension = ActiveDocument.Name 'Or use .FullName

' Your code here

End Sub

每当用户选择“文件另存为”时,它将触发

HTH!

10-06 10:42