Reply
 
Thread Tools Display Modes
  #1   Report Post  
Posted to microsoft.public.word.docmanagement
Ray P Ray P is offline
external usenet poster
 
Posts: 1
Default pause print between pages in Word 2007

I need to print a document consisting of multiple pages. Each page has to be
printed on a pre-printed form. I want to pause the print process after each
page to allow me to place a new form in the printer and align same. I do not
want to have to go thru the print page number option each time. I would like
to be able to press a key and start the print for the next page as soon as I
have the form in place. Any suggestions would be appreciated
  #2   Report Post  
Posted to microsoft.public.word.docmanagement
Jay Freedman Jay Freedman is offline
external usenet poster
 
Posts: 9,854
Default pause print between pages in Word 2007

Ray P wrote:
I need to print a document consisting of multiple pages. Each page
has to be printed on a pre-printed form. I want to pause the print
process after each page to allow me to place a new form in the
printer and align same. I do not want to have to go thru the print
page number option each time. I would like to be able to press a key
and start the print for the next page as soon as I have the form in
place. Any suggestions would be appreciated


It takes a macro to do that. See http://www.gmayor.com/installing_macro.htm
if needed.

Sub PausePerPage()
Dim nPg As Long, totalPgs As Long
Dim rslt As VbMsgBoxResult

totalPgs = ActiveDocument.Range.Information( _
wdActiveEndPageNumber)
nPg = 1

While nPg = totalPgs
rslt = MsgBox(prompt:="Press OK to print page " & nPg, _
buttons:=vbOKCancel)
If rslt = vbCancel Then Exit Sub

ActiveDocument.PrintOut Background:=False, _
Range:=wdPrintRangeOfPages, _
Pages:=CStr(nPg)
nPg = nPg + 1
Wend
End Sub

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.


  #3   Report Post  
Posted to microsoft.public.word.docmanagement
Ray P[_2_] Ray P[_2_] is offline
external usenet poster
 
Posts: 1
Default pause print between pages in Word 2007

Thanks. I will give it a try!


"Jay Freedman" wrote:

Ray P wrote:
I need to print a document consisting of multiple pages. Each page
has to be printed on a pre-printed form. I want to pause the print
process after each page to allow me to place a new form in the
printer and align same. I do not want to have to go thru the print
page number option each time. I would like to be able to press a key
and start the print for the next page as soon as I have the form in
place. Any suggestions would be appreciated


It takes a macro to do that. See http://www.gmayor.com/installing_macro.htm
if needed.

Sub PausePerPage()
Dim nPg As Long, totalPgs As Long
Dim rslt As VbMsgBoxResult

totalPgs = ActiveDocument.Range.Information( _
wdActiveEndPageNumber)
nPg = 1

While nPg = totalPgs
rslt = MsgBox(prompt:="Press OK to print page " & nPg, _
buttons:=vbOKCancel)
If rslt = vbCancel Then Exit Sub

ActiveDocument.PrintOut Background:=False, _
Range:=wdPrintRangeOfPages, _
Pages:=CStr(nPg)
nPg = nPg + 1
Wend
End Sub

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.



  #4   Report Post  
Posted to microsoft.public.word.docmanagement
Suzanne S. Barnhill Suzanne S. Barnhill is offline
external usenet poster
 
Posts: 33,624
Default pause print between pages in Word 2007

If you have no paper in the printer, you can print only one page. Then add
another form, and another will print. If you set the paper source (on the
Paper tab of Page Setup) to Manual Feed, you will be prompted for each
sheet.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
http://word.mvps.org

"Ray P" Ray wrote in message
...
I need to print a document consisting of multiple pages. Each page has to
be
printed on a pre-printed form. I want to pause the print process after
each
page to allow me to place a new form in the printer and align same. I do
not
want to have to go thru the print page number option each time. I would
like
to be able to press a key and start the print for the next page as soon as
I
have the form in place. Any suggestions would be appreciated


Reply
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Word 2007 - I want to print page 2 of 6 pages Beehive Microsoft Word Help 1 July 9th 08 04:06 PM
2 Pages Per Print Word 2007 JT Page Layout 17 April 1st 08 04:07 PM
print preview more than 2 pages in Word 2007 Sue Microsoft Word Help 2 May 21st 07 09:55 PM
Pause print after each page AHSinVT Microsoft Word Help 1 May 12th 07 10:43 AM
Why does word cause print job to pause/stop after a page break twig Microsoft Word Help 1 October 10th 05 02:57 PM


All times are GMT +1. The time now is 02:42 PM.

Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"