Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Restrict page printing

9 views
Skip to first unread message

ItsBarbara

unread,
Sep 30, 2006, 8:28:01 PM9/30/06
to
Is there a way to restrict the printing of certain pages in a word document.
I have a form I'm distributing but the last 4 pages are explanations and
suggestions. When each teacher completes their form, they need to print it
out, however, I don't want them printing the extra pages.


Graham Mayor

unread,
Oct 1, 2006, 4:22:05 AM10/1/06
to
You can't do this without adding macros and if you are distributing a
document that will (should!) provoke a macro warning. Users should be
reluctant to run macros in documents.

If you are making it available as a template it is an easy matter to
intercept the print function and force the printing of individual documents.
Given that you have four pages of instructions, an extra line requesting
that only the required pages need printing does not seem unreasonable?

If you want the macro code for the form template (not normal.dot - or you
will never print any document past the chosen page range) then eg

Sub FilePrint()
Application.PrintOut , Range:=wdPrintRangeOfPages, Pages:="1-3"
End Sub

will print out pages 1 to 3.

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

My web site www.gmayor.com
Word MVP web site http://word.mvps.org

John McGhie [MVP - Word and Word Macintosh]

unread,
Oct 1, 2006, 9:28:26 AM10/1/06
to
Yes. Normally you would print "specific" pages. In other words, tell the
printer which pages you DO want to print, and it won't print the others.

For more, see "Print a range of pages" in the Help


On 1/10/06 10:28 AM, in article
E79CC98D-AE3E-48B5...@microsoft.com, "ItsBarbara"
<ItsBa...@discussions.microsoft.com> wrote:

--

Please reply to the newsgroup to maintain the thread. Please do not email
me unless I ask you to.

John McGhie <jo...@mcghie.name>
Microsoft MVP, Word and Word for Macintosh. Business Analyst, Consultant
Technical Writer.
Sydney, Australia +61 (0) 4 1209 1410

ItsBarbara

unread,
Oct 2, 2006, 1:38:01 AM10/2/06
to
Thanks to both of you. I know how to print specific pages, however, I know my
users. Thanks for the Macro!! You are awesome.
0 new messages