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 » Page Layout
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Section break- Continuous problem



 
 
Thread Tools Display Modes
  #1  
Old May 4th, 2004, 11:41 PM
Chantz
external usenet poster
 
Posts: n/a
Default Section break- Continuous problem

I have a legal document and page 1-3 are section 1 of the document. However, in the middle of page three, I have put a section break - continuous because a different format and text box follows. This makes this section, section 2. At the end of section 2, I have another section break, but this one is section break - next page. Thus continuing the docuement on the 4th page section 3. The problem is that there are times that the users will need to print only sections 1 and 3 and not section2. However, Word is printing all sections even though I specifically instructed to print only s1,s3.

Can anybody help me?
  #2  
Old May 5th, 2004, 04:27 AM
Jay Freedman
external usenet poster
 
Posts: n/a
Default Section break- Continuous problem

Hi Chantz

The print function can't print less than a whole page, regardless of
what you tell it about section numbers.

What you can do is change the font color of section 2 to white so it's
invisible to the printer, print the whole document, and then undo the
color change. To automate this, add the following macro to the
template (I hope you're making a template and not just a document).

Sub Print_NotSec2()
With ActiveDocument
.Sections(2).Range.Font.Color = wdColorWhite
.PrintOut Background:=False
.Undo
End With
End Sub

Then add a button to the toolbar to run the macro, for the times when
section 2 should be suppressed.

Chantz wrote:

I have a legal document and page 1-3 are section 1 of the document. However, in the middle of page three, I have put a section break - continuous because a different format and text box follows. This makes this section, section 2. At the end of section 2, I have another section break, but this one is section break - next page. Thus continuing the docuement on the 4th page section 3. The problem is that there are times that the users will need to print only sections 1 and 3 and not section2. However, Word is printing all sections even though I specifically instructed to print only s1,s3.

Can anybody help me?



--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://www.mvps.org/word
 




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 01:43 AM.


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