If this is a particular job, simply create a template for it with the page
number already placed where you want it.

Signature
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
My web site www.gmayor.com
Word MVP web site http://word.mvps.org
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
> By inserting page numbers most of the times you use;
> insert>page numbers>press ok, and your done. The page
[quoted text clipped - 8 lines]
>
> Kind regards Arthur
not exactly,
I want this option in the normal.dot and even so that the
header isn't visible. When I use the option that I
already put a page number in this template, then every
document has standard a page number in it.
>-----Original Message-----
>If this is a particular job, simply create a template for it with the page
[quoted text clipped - 14 lines]
>
>.
Graham Mayor - 28 Dec 2004 17:18 GMT
You don't seem to understand the concept of templates. Why do you want this
function in normal.dot? You should not be making documents from normal.dot,
but from templates appropriate to the documents.

Signature
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
My web site www.gmayor.com
Word MVP web site http://word.mvps.org
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
> not exactly,
>
[quoted text clipped - 29 lines]
>>
>> .
I don't totally understand what you are saying. This phrase
> But I want to use the header as standard option to be
> highlighted
Makes no sense to me at all.
You want the menu command Insert | Page Number to instead open up the
header/footer, and bring up the h/f toolbar?
There is no simple option you can set to do this. You could remove the
Insert | Page Number command from the menu, forcing the user to use the
other method (which they won't know, and will cause lots of confusion). You
could write a macro that does what you want, and either set it to intercept
Insert | Page Number, or put it in the same location so that people will
think they are clicking Insert | Page Number when really they are calling
your macro.
If you are very clear about what you need to have happen, people here may be
able to help you, or know where to send you for help.
HOWEVER, please do not mess about with people's Normal.dot. You can affect
the menus/toolbars they see by creating a global template, not screwing up
their Normal.dot.

Signature
Daiya Mitchell, MVP Mac/Word
Word FAQ: http://www.word.mvps.org/
MacWord Tips: <http://www.word.mvps.org/MacWordNew/>
What's an MVP? A volunteer! Read the FAQ: http://mvp.support.microsoft.com/
> By inserting page numbers most of the times you use;
> insert>page numbers>press ok, and your done. The page
[quoted text clipped - 8 lines]
>
> Kind regards Arthur
Suzanne S. Barnhill - 29 Dec 2004 03:14 GMT
I believe what he wants is not to put the page number in the header/footer
at all but to change the default settings of the Insert | Page Numbers
dialog, which I don't believe is possible.

Signature
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.
> I don't totally understand what you are saying. This phrase
> > But I want to use the header as standard option to be
[quoted text clipped - 31 lines]
> >
> > Kind regards Arthur
Arthur - 29 Dec 2004 09:18 GMT
Exactly, I want to change the default setting of
the "Insert page numbers".
So to change this option in Word I have to alter not
something in a template but in the program Word self? I
thought that this would be easy...
does someone has an another suggestion? or is it truly
impossible?
>-----Original Message-----
>I believe what he wants is not to put the page number in the header/footer
[quoted text clipped - 45 lines]
>
>.
Graham Mayor - 29 Dec 2004 11:50 GMT
This is an inbuilt function. You can replace the inbuilt function with a
macro of your own, by giving it the same name as the inbuilt function, which
in this case is InsertPageNumbers
Record the steps you want in a macro and save it with that name.
Something like
Sub InsertPageNumbers()
ActiveWindow.ActivePane.View.SeekView = wdSeekCurrentPageHeader
Selection.Fields.Add Range:=Selection.Range, Type:=wdFieldPage
ActiveWindow.ActivePane.View.SeekView = wdSeekMainDocument
End Sub
should do the trick - http://www.gmayor.com/installing_macro.htm

Signature
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
My web site www.gmayor.com
Word MVP web site http://word.mvps.org
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
> Exactly, I want to change the default setting of
> the "Insert page numbers".
[quoted text clipped - 69 lines]
>>
>> .
arthur - 30 Dec 2004 07:49 GMT
Hey all,
I thought so,
I have considered the option to replace the built in
function with a home made macro, but I want to
keep "word" as clean as possible.
But when this is the only way, a macro seems to be a
great solution.
Thanks for your help, good advice
ps have a happy new year!
>-----Original Message-----
>
[quoted text clipped - 9 lines]
> Selection.Fields.Add Range:=Selection.Range, Type:=wdFieldPage
> ActiveWindow.ActivePane.View.SeekView =
wdSeekMainDocument
>End Sub
>
[quoted text clipped - 75 lines]
>
>.
Daiya Mitchell - 29 Dec 2004 16:15 GMT
Though I swear I had read it several times and tried really hard to
understand, suddenly after reading your message it is perfectly clear to me.
Poor poster must have had no idea what I was talking about.
DM
> I believe what he wants is not to put the page number in the header/footer
> at all but to change the default settings of the Insert | Page Numbers
> dialog, which I don't believe is possible.