我正在尝试在Office 2010中更改默认文件名“文档1”
我试着这样不行:(
Private Sub Document_New()
Launcher.AutoExec
End Sub
在函数Launcher.AutoExec:
中 Set doc = ActiveDocument
sTitle = "Test 2017"
doc.BuiltInDocumentProperties("Title").Value = sTitle
但我点击文件并另存为,名称已更改:o
解决方案: 如果编辑Normal.dotm,则打开此文件,不要双击“文件”选项卡,
在normal.dotm中编辑标题,将来打开的文档将具有标题
答案 0 :(得分:0)
反过来会更好地工作;)
Set doc = ActiveDocument
sTitle = "Test 2017"
doc.BuiltInDocumentProperties("Title").Value = sTitle
doc.Saved = False
doc.save
答案 1 :(得分:0)
解决方案: 如果编辑Normal.dotm,则打开此文件,不要双击“文件”选项卡,
https://cdn.ablebits.com/_img-blog/excel-document-properties/display-properties-pane.png
在normal.dotm中编辑标题,将来打开的文档将具有标题