如何在Microsoft Word中找到上次输入的单词的时间?

时间:2015-08-18 15:20:09

标签: vba time ms-word word-vba

在Excel中,您可以找到使用VBA编码在特定单元格中输入最后一个条目的时间 我想知道在Word中你是否可以做同样的事情。

我特别想知道上次输入的时间和日期。

1 个答案:

答案 0 :(得分:0)

在Word中,您无法获得将特定Word输入文档的时间。您可以获得的是上次保存文件的时间:

Sub PrintLastSaveTime()
    Dim propLastSaved As DocumentProperty
    Dim propLastAuthor As DocumentProperty

    Set propLastSaved = ActiveDocument.BuiltInDocumentProperties(WdBuiltInProperty.wdPropertyTimeLastSaved)
    Set propLastAuthor = ActiveDocument.BuiltInDocumentProperties(WdBuiltInProperty.wdPropertyLastAuthor)

    Debug.Print "The document was last saved by " & propLastAuthor.Value & " at "; propLastSaved.Value

End Sub