VBA单词编辑标题defaut

时间:2017-02-01 08:59:15

标签: vba ms-word word-vba

我正在尝试在Office 2010中更改默认文件名“文档1”

Picture buton clic

我试着这样不行:(

Private Sub Document_New()
    Launcher.AutoExec
End Sub

在函数Launcher.AutoExec:

 Set doc = ActiveDocument

    sTitle = "Test 2017"
  doc.BuiltInDocumentProperties("Title").Value = sTitle

但我点击文件并另存为,名称已更改:o

解决方案: 如果编辑Normal.dotm,则打开此文件,不要双击“文件”选项卡,

https://support.office.com/en-us/article/Change-the-Normal-template-Normal-dotm-06de294b-d216-47f6-ab77-ccb5166f98ea#ID0EAABAAA=2016,_2013,_2010

Picture buton clic

在normal.dotm中编辑标题,将来打开的文档将具有标题

2 个答案:

答案 0 :(得分:0)

反过来会更好地工作;)

Set doc = ActiveDocument
    sTitle = "Test 2017"
    doc.BuiltInDocumentProperties("Title").Value = sTitle
    doc.Saved = False
    doc.save

答案 1 :(得分:0)

解决方案: 如果编辑Normal.dotm,则打开此文件,不要双击“文件”选项卡,

https://support.office.com/en-us/article/Change-the-Normal-template-Normal-dotm-06de294b-d216-47f6-ab77-ccb5166f98ea#ID0EAABAAA=2016,_2013,_2010

https://cdn.ablebits.com/_img-blog/excel-document-properties/display-properties-pane.png

在normal.dotm中编辑标题,将来打开的文档将具有标题