Change insert page number default from bottom or page to top of pa

G

Guest

I have Word 2003 and I want to change the default setting for insert pages. I
like to put my page numbers at the top of the page and I have to manually
change the setting from the default bottom of the page every time. TIA.
 
G

Graham Mayor

Create a template (not normal.dot) with the page number field(s) already
inserted and create your page numbered documents from it.
or
Intercept the InsertPageNumbers command with a macro to set the page numbers
position in the dialog to top of the page eg

Sub InsertPageNumbers()
SendKeys "{UP}{UP}{TAB}"
'SendKeys "{UP}{UP}{TAB}{UP}{UP}{TAB}"
Dialogs(wdDialogInsertPageNumbers).Show
End Sub

The alternative remmed out line will put the page numbers in the centre
rather than at the default right of the page header.
http://www.gmayor.com/installing_macro.htm

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top