Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Add the Last-Saved Date to the Footer of a Microsoft Word DocumentContent of Add the Last-Saved Date to the Footer of a Microsoft Word Document.vbsMD5 Hash: 4598D9E73D38523321F0D45653D7BD98 |
||
Const wdFieldSaveDate = 22
Const wdAlignParagraphCenter = 1 Set objWord = CreateObject("Word.Application") objWord.Visible = True Set objDoc = objWord.Documents.Add() Set objRange = objDoc.Sections(1).Footers(1).Range objDoc.Fields.Add objRange, wdFieldSaveDate objRange.ParagraphFormat.Alignment = wdAlignParagraphCenter objDoc.SaveAs("C:\Scripts\Test.doc") | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |