A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Word » Formatting Long Documents
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Headers' Link to previous are killing me



 
 
Thread Tools Display Modes
  #1  
Old June 4th, 2004, 10:12 PM
Francois
external usenet poster
 
Posts: n/a
Default Headers' Link to previous are killing me

Hi. I'm doing a complex Word 2003 document, facing pages,
different Headers & Footers with changes at almost each
section. If I need to edit, particularly if I insert a
one-page section in the middle of the document, Word
automatically messes up all subsequent H&F by moving them
from a left to a right page and linking all of them to
the previous section (I had previously disabled each
individual one manually). Anybody know of a way to
permanently disable this horrible "Let me do it for you"
feature?

Alternatively, do any of you know how to insert a 1 or 2
page section AND get Word to simply cascade all
subsequent H&Fs correctly? Maybe there's a trick here I
don't know about?

Thanks

Francois
  #2  
Old June 6th, 2004, 12:06 AM
Francois
external usenet poster
 
Posts: n/a
Default Headers' Link to previous are killing me

I found this article (there was a link here) on Working
with sections by Dave Rado giving some clues on
overriding the problem:
http://word.mvps.org/FAQs/Formatting...thSections.htm
I am however still looking at some way to permanently
disable this "Link to previous feature" if this is at all
possible.

Thanks
-----Original Message-----
Hi. I'm doing a complex Word 2003 document, facing

pages,
different Headers & Footers with changes at almost each
section. If I need to edit, particularly if I insert a
one-page section in the middle of the document, Word
automatically messes up all subsequent H&F by moving

them
from a left to a right page and linking all of them to
the previous section (I had previously disabled each
individual one manually). Anybody know of a way to
permanently disable this horrible "Let me do it for you"
feature?

Alternatively, do any of you know how to insert a 1 or 2
page section AND get Word to simply cascade all
subsequent H&Fs correctly? Maybe there's a trick here I
don't know about?

Thanks

Francois
.

  #3  
Old June 6th, 2004, 11:07 AM
Cindy M -WordMVP-
external usenet poster
 
Posts: n/a
Default Headers' Link to previous are killing me

Hi Francois,

I found this article (there was a link here) on Working
with sections by Dave Rado giving some clues on
overriding the problem:
http://word.mvps.org/FAQs/Formatting...thSections.htm
I am however still looking at some way to permanently
disable this "Link to previous feature" if this is at all
possible.

I don't think it's possible.

Cindy Meister
INTER-Solutions, Switzerland
http://homepage.swissonline.ch/cindymeister (last update Sep
30 2003)
http://www.word.mvps.org

This reply is posted in the Newsgroup; please post any
follow question or reply in the newsgroup and not by e-mail
:-)

  #4  
Old June 7th, 2004, 06:21 PM
Dayo Mitchell
external usenet poster
 
Posts: n/a
Default Headers' Link to previous are killing me

The workaround would be a macro that inserts a new section with the headers
and footers set to unlinked, and using that instead of Insert | Section
Break. If you confirm you are still around, I can probably dig out a macro
someone else wrote, although the code was not that complex, if I remember
correctly.

DM


"Francois" wrote:

I found this article (there was a link here) on Working
with sections by Dave Rado giving some clues on
overriding the problem:
http://word.mvps.org/FAQs/Formatting...thSections.htm
I am however still looking at some way to permanently
disable this "Link to previous feature" if this is at all
possible.

Thanks
-----Original Message-----
Hi. I'm doing a complex Word 2003 document, facing

pages,
different Headers & Footers with changes at almost each
section. If I need to edit, particularly if I insert a
one-page section in the middle of the document, Word
automatically messes up all subsequent H&F by moving

them
from a left to a right page and linking all of them to
the previous section (I had previously disabled each
individual one manually). Anybody know of a way to
permanently disable this horrible "Let me do it for you"
feature?

Alternatively, do any of you know how to insert a 1 or 2
page section AND get Word to simply cascade all
subsequent H&Fs correctly? Maybe there's a trick here I
don't know about?

Thanks

Francois
.


  #5  
Old June 8th, 2004, 07:59 AM
Doug Robbins - Word MVP
external usenet poster
 
Posts: n/a
Default Headers' Link to previous are killing me

Like:

Dim arange As Range
Set arange = ActiveDocument.Range
arange.Collapse wdCollapseEnd
arange.InsertBreak Type:=wdSectionBreakNextPage
With ActiveDocument.Sections(ActiveDocument.Sections.Co unt)
.Headers(wdHeaderFooterFirstPage).LinkToPrevious = False
.Headers(wdHeaderFooterPrimary).LinkToPrevious = False
.Footers(wdHeaderFooterFirstPage).LinkToPrevious = False
.Footers(wdHeaderFooterPrimary).LinkToPrevious = False
End With


--
Please post any further questions or followup to the newsgroups for the
benefit of others who may be interested. Unsolicited questions forwarded
directly to me will only be answered on a paid consulting basis.

Hope this helps
Doug Robbins - Word MVP
"Dayo Mitchell" wrote in
message news:BCEA1C56.30556%dayomitchell_1997@NOhotmailSPA M.com.invalid...
The workaround would be a macro that inserts a new section with the

headers
and footers set to unlinked, and using that instead of Insert | Section
Break. If you confirm you are still around, I can probably dig out a

macro
someone else wrote, although the code was not that complex, if I remember
correctly.

DM


"Francois" wrote:

I found this article (there was a link here) on Working
with sections by Dave Rado giving some clues on
overriding the problem:
http://word.mvps.org/FAQs/Formatting...thSections.htm
I am however still looking at some way to permanently
disable this "Link to previous feature" if this is at all
possible.

Thanks
-----Original Message-----
Hi. I'm doing a complex Word 2003 document, facing

pages,
different Headers & Footers with changes at almost each
section. If I need to edit, particularly if I insert a
one-page section in the middle of the document, Word
automatically messes up all subsequent H&F by moving

them
from a left to a right page and linking all of them to
the previous section (I had previously disabled each
individual one manually). Anybody know of a way to
permanently disable this horrible "Let me do it for you"
feature?

Alternatively, do any of you know how to insert a 1 or 2
page section AND get Word to simply cascade all
subsequent H&Fs correctly? Maybe there's a trick here I
don't know about?

Thanks

Francois
.



  #6  
Old June 8th, 2004, 11:45 PM
Dayo Mitchell
external usenet poster
 
Posts: n/a
Default Headers' Link to previous are killing me

Well, yes, it was your macro I was going to dig out, though I think a less
comprehensive one. I was having problems finding it anyhow. Thanks very
much, I'll save this one as well.

Dayo

"Doug Robbins - Word MVP" wrote:

Like:

Dim arange As Range
Set arange = ActiveDocument.Range
arange.Collapse wdCollapseEnd
arange.InsertBreak Type:=wdSectionBreakNextPage
With ActiveDocument.Sections(ActiveDocument.Sections.Co unt)
.Headers(wdHeaderFooterFirstPage).LinkToPrevious = False
.Headers(wdHeaderFooterPrimary).LinkToPrevious = False
.Footers(wdHeaderFooterFirstPage).LinkToPrevious = False
.Footers(wdHeaderFooterPrimary).LinkToPrevious = False
End With


 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 07:06 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.