Group:  Microsoft Word ยป microsoft.public.word.formatting.longdocs
Thread: New section header 'Same as Previous' - can default be changed

DotNetBag
.NET Development Newsgroups

HTVi
TV Discussion Newsgroups

Our Hot Pick: Rising Antivirus 2006 - Certified by TUV & Checkmark! Get 10% discount by entering this coupon code: ONDISCOUNT10
Rising Antivirus 2006

New section header 'Same as Previous' - can default be changed
PEVA 21.02.2006 18:11:28
Can the default for new section headers and footers be changed to be *not*
'Same as previous'? (I know how to turn 'Same as Previous' off once the
section is created - how do I change the default for newly created sections?)
Re: New section header 'Same as Previous' - can default be changed
"Doug Robbins - Word MVP" <dkr[ at ]REMOVETHISmvps.org> 21.02.2006 19:06:42
You could use a macro to insert the Section Break and turn off the "Same as
Previous" for all headers and footers in the new section.

--
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

"PEVA" <peva[ at ]dontdoit.com> wrote in message
news:DF9D5297-AC93-48A6-9683-B6EFFF8B1335[ at ]microsoft.com...
[Quoted Text]
> Can the default for new section headers and footers be changed to be *not*
> 'Same as previous'? (I know how to turn 'Same as Previous' off once the
> section is created - how do I change the default for newly created
> sections?)


Re: New section header 'Same as Previous' - can default be changed
"Suzanne S. Barnhill" <sbarnhill[ at ]mvps.org> 22.02.2006 02:26:43
If you unlink section 2 from section 1, new sections that are subsequently
created should also be unlinked.

--
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.

"PEVA" <peva[ at ]dontdoit.com> wrote in message
news:DF9D5297-AC93-48A6-9683-B6EFFF8B1335[ at ]microsoft.com...
[Quoted Text]
> Can the default for new section headers and footers be changed to be *not*
> 'Same as previous'? (I know how to turn 'Same as Previous' off once the
> section is created - how do I change the default for newly created
sections?)

Re: New section header 'Same as Previous' - can default be changed
PEVA 22.02.2006 16:15:27
Ummm - that's not the way it's working here. Regardless of what you do prior
to inserting new section, new headers and footers always link to previous - I
just tried it to confirm. I've never seen it work any other way on any
version of Word.

"Suzanne S. Barnhill" wrote:

[Quoted Text]
> If you unlink section 2 from section 1, new sections that are subsequently
> created should also be unlinked.

Re: New section header 'Same as Previous' - can default be changed
PEVA 22.02.2006 16:16:29
That would proably work. Not sure it would be worth the trouble of
creating/invoking a macro - but I'lll give it some thought. Changeable
defaults would be nice.

"Doug Robbins - Word MVP" wrote:

[Quoted Text]
> You could use a macro to insert the Section Break and turn off the "Same as
> Previous" for all headers and footers in the new section.
>
> --
> 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
>
> "PEVA" <peva[ at ]dontdoit.com> wrote in message
> news:DF9D5297-AC93-48A6-9683-B6EFFF8B1335[ at ]microsoft.com...
> > Can the default for new section headers and footers be changed to be *not*
> > 'Same as previous'? (I know how to turn 'Same as Previous' off once the
> > section is created - how do I change the default for newly created
> > sections?)
>
>
>
Re: New section header 'Same as Previous' - can default be changed
"Greg" <gmaxey[ at ]mvps.org> 22.02.2006 17:51:07
It isnt' that much trouble:

Sub InsertSectionBreak()
Selection.InsertBreak Type:=wdSectionBreakNextPage
With Selection.Sections(1)
With .PageSetup
.DifferentFirstPageHeaderFooter = True
.OddAndEvenPagesHeaderFooter = True
End With
.Headers(wdHeaderFooterFirstPage).LinkToPrevious = False
.Footers(wdHeaderFooterFirstPage).LinkToPrevious = False
.Headers(wdHeaderFooterEvenPages).LinkToPrevious = False
.Footers(wdHeaderFooterEvenPages).LinkToPrevious = False
.Headers(wdHeaderFooterPrimary).LinkToPrevious = False
.Footers(wdHeaderFooterPrimary).LinkToPrevious = False
End With
End Sub

Home | Search | Terms | Imprint | Contact
Newsgroups Reader - provided by WiredBox.Net