Windows Vista Forums
Vista Forums Home Join Vista Forums Windows 7 Forum Vista Tutorials Tags
Welcome to Windows Vista Forums. Our forum is dedicated to helping you find solutions with any problems, errors or issues you are experiencing with Windows Vista. The Vista forum also covers news and updates and has an extensive Windows Vista tutorial section that covers a wide range of tips and tricks.

Go Back   Vista Forums > Misc Newsgroups > VB Script

Vista - Adding Footers to Existing word documents

Reply
 
Old 09-05-2008   #1 (permalink)
Ken


 
 

Adding Footers to Existing word documents

I have a list of word files which needs to have footers added. I believe I
have the basics defined. See below code:-

Set objNetwork = CreateObject("Wscript.Network")
strUser = objNetwork.UserName
strText = "Data Classification: Internal" & vbCRLF & vbCRLF &_
"Integrity: low" & vbCRLF

set objWord = CreateObject("Word.Application")
objWord.Visible = False
set objDoc = objWord.Documents.Open("L:\Updated Procedures\Asset Disposal
Procedures V2.doc")

set objRange = objDoc.Sections(1).Footers(1).Range

set objTemplate = objDoc.AttachedTemplate

objDoc.Sections(1).Footers(1).Range.Text = strText
objTemplate.AutoTextEntries("Filename and path").Insert objRange

objDoc.Sections(1).Footers(1).Range.ParagraphFormat.Alignment = 3
objWord.Quit

My problem is that Filename and path over writes strText and I need to save
my file without prompting me.

Can you assist me?

My System SpecsSystem Spec
Reply

Thread Tools


Similar Threads
Thread Forum
Saving Documents Created in Word 2007 to be Compatible with Word 2003 Microsoft Office
Adding a Laptop to existing Wireless Network Network & Sharing
adding output to an existing file PowerShell
Adding Windows XP to the existing Vista installation Vista installation & setup
adding vista comps to an existing network Vista networking & sharing


Vista Forums is an independent web site and has not been authorized,
sponsored, or otherwise approved by Microsoft Corporation.
"Windows Vista", the Start Orb, and related materials are trademarks of Microsoft Corp.
© Designer Media Ltd

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46