Reply
 
Thread Tools Display Modes
  #1   Report Post  
Posted to microsoft.public.word.pagelayout
Tara Collins Tara Collins is offline
external usenet poster
 
Posts: 1
Default footer page template

We're trying to standardize our documents throughout the organization.

I am setting up a default page template that will be used for internal use
and revisions. It will include "Draft" as a watermark and in the footer
"date/time, file path+name, author." I've gotten this far and have saved the
doc as a template.

Two questions:
1) how do I set this as my new default page template so when I open Word, it
opens with this template and the proper filename/path? I've gone to the
upper-left-hand-corner Windows Button and can't figure it out.

2) Once the document is through revision and finalized, the footer's file
path/name area should be changed to just the filename. (keeping date/time and
author) Do I have to go in and manually change the footer every time before
saving the docment's final version?

Any help you can provide is appreiated. Thanks, T
  #2   Report Post  
Posted to microsoft.public.word.pagelayout
Doug Robbins - Word MVP on news.microsoft.com Doug Robbins - Word MVP on news.microsoft.com is offline
external usenet poster
 
Posts: 407
Default footer page template

You should not try and set that template as the default template. Rather,
in the Normal.dot template (dotm if you are using Word 2007, create the
following macro

Sub autoexec()
Documents.Add "templatename"
End Sub

Then when you start Word, a document created from that template will be
created. You may also want to add a button to a toolbar (in Word 2003 and
earlier) or to the Quick Access Toolbar in Word 2007 to run that macro so
that the user can click on that button when they want to create a new
document.

If they want to start Word with a blank document, they should hold down the
Shift key when Word is starting as that will prevent an Auto macro from
executing.

For the second part of your request, that modification will either have to
be done manually or you could create a macro to make the modifications.
--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP, originally posted via msnews.microsoft.com

"Tara Collins" Tara wrote in message
...
We're trying to standardize our documents throughout the organization.

I am setting up a default page template that will be used for internal use
and revisions. It will include "Draft" as a watermark and in the footer
"date/time, file path+name, author." I've gotten this far and have saved
the
doc as a template.

Two questions:
1) how do I set this as my new default page template so when I open Word,
it
opens with this template and the proper filename/path? I've gone to the
upper-left-hand-corner Windows Button and can't figure it out.

2) Once the document is through revision and finalized, the footer's file
path/name area should be changed to just the filename. (keeping date/time
and
author) Do I have to go in and manually change the footer every time
before
saving the docment's final version?

Any help you can provide is appreiated. Thanks, T



  #3   Report Post  
Posted to microsoft.public.word.pagelayout
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default footer page template

The simplest way to work with this template is to create a shortcut to the
template on your desktop. The default action would be to open a new document
in Word based on that template. The template will need an autonew macro to
save the document and update the filename field if you want the filename to
be displayed. The document will not have a filename until it is saved.

As for the second question, the following macro will remove the \p switch
from a filename field in a footer and save the document

Dim oField As Field
Dim oSection As Section
Dim oFooter As HeaderFooter
For Each oSection In ActiveDocument.Sections
For Each oFooter In oSection.Footers
If oFooter.Exists Then
For Each oField In oFooter.Range.Fields
If oField.Type = wdFieldFileName Then
oField.Code.Text = Replace(oField.Code.Text, "\p", "")
oField.Update
End If
Next oField
End If
Next oFooter
Next oSection
ActiveDocument.Save



--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org



Tara Collins wrote:
We're trying to standardize our documents throughout the organization.

I am setting up a default page template that will be used for
internal use and revisions. It will include "Draft" as a watermark
and in the footer "date/time, file path+name, author." I've gotten
this far and have saved the doc as a template.

Two questions:
1) how do I set this as my new default page template so when I open
Word, it opens with this template and the proper filename/path? I've
gone to the upper-left-hand-corner Windows Button and can't figure it
out.

2) Once the document is through revision and finalized, the footer's
file path/name area should be changed to just the filename. (keeping
date/time and author) Do I have to go in and manually change the
footer every time before saving the docment's final version?

Any help you can provide is appreiated. Thanks, T




  #4   Report Post  
Posted to microsoft.public.word.pagelayout
Tara Collins[_2_] Tara Collins[_2_] is offline
external usenet poster
 
Posts: 1
Default footer page template

Thanks Doug. I'm new to 2007 and don't know anything about Macros. I'll have
to run through the tutorial so see how to place the text you recommend in the
Normal.docm. I tried cutting and pasting your text into the macro and it
didn't take.

I'm sending your suggestion on to a local college professor who might be
able to walk us through over the phone. I appreciate the direction ~ Thanks,
T

"Doug Robbins - Word MVP on news.microsof" wrote:

You should not try and set that template as the default template. Rather,
in the Normal.dot template (dotm if you are using Word 2007, create the
following macro

Sub autoexec()
Documents.Add "templatename"
End Sub

Then when you start Word, a document created from that template will be
created. You may also want to add a button to a toolbar (in Word 2003 and
earlier) or to the Quick Access Toolbar in Word 2007 to run that macro so
that the user can click on that button when they want to create a new
document.

If they want to start Word with a blank document, they should hold down the
Shift key when Word is starting as that will prevent an Auto macro from
executing.

For the second part of your request, that modification will either have to
be done manually or you could create a macro to make the modifications.
--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP, originally posted via msnews.microsoft.com

"Tara Collins" Tara wrote in message
...
We're trying to standardize our documents throughout the organization.

I am setting up a default page template that will be used for internal use
and revisions. It will include "Draft" as a watermark and in the footer
"date/time, file path+name, author." I've gotten this far and have saved
the
doc as a template.

Two questions:
1) how do I set this as my new default page template so when I open Word,
it
opens with this template and the proper filename/path? I've gone to the
upper-left-hand-corner Windows Button and can't figure it out.

2) Once the document is through revision and finalized, the footer's file
path/name area should be changed to just the filename. (keeping date/time
and
author) Do I have to go in and manually change the footer every time
before
saving the docment's final version?

Any help you can provide is appreiated. Thanks, T




Reply
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
footer in template Elizabeth Microsoft Word Help 4 May 21st 08 01:10 PM
Removing a footer from the last page in a document template misso Formatting Long Documents 6 September 13th 07 04:50 AM
Sizing even page footer affects odd footer size soccerman58 Page Layout 6 June 18th 07 01:56 PM
Page Format/Footer template Eric Page Layout 4 September 19th 06 10:27 PM
How do I create a 2 page protected template with different footer. SEBEK Page Layout 3 April 4th 05 09:08 PM


All times are GMT +1. The time now is 02:24 PM.

Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"