how to set up a "batch print job" that only prints certain pages

  • Follow


I have a safety manual from which I only want to print selected pages for an 
orientation manual.  The safety manual is a living document, always changing 
so when I need to do a new worker orientation I want the most current version 
of the selected pages, otherwise I would just photocopy the orientation 
manual.  Not good enough to just note page numbers.  This changes with time 
as well.
0
Reply Utf 3/19/2010 2:36:05 PM

It is difficult to imagine a means of printing a goup of pages which will 
change over time, unless they can be specifically identified without user 
interference.

The following macro will print the page at the cursor

Sub PrintPage()
    Application.PrintOut Range:=wdPrintCurrentPage
End Sub

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

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


"Pencor Cam" <PencorCam@discussions.microsoft.com> wrote in message 
news:AB632058-17CB-4BE1-A274-AB1F72D0000A@microsoft.com...
>I have a safety manual from which I only want to print selected pages for 
>an
> orientation manual.  The safety manual is a living document, always 
> changing
> so when I need to do a new worker orientation I want the most current 
> version
> of the selected pages, otherwise I would just photocopy the orientation
> manual.  Not good enough to just note page numbers.  This changes with 
> time
> as well. 


0
Reply Graham 3/20/2010 6:47:15 AM


1 Replies
581 Views

(page loaded in 0.12 seconds)

Similiar Articles:
















7/28/2012 2:31:40 PM


Reply: