Reply
 
Thread Tools Display Modes
  #1   Report Post  
Posted to microsoft.public.word.docmanagement
harriettbird harriettbird is offline
external usenet poster
 
Posts: 3
Default set default to print first page only

Client creates many different 2 page documents but they only need to print
the first page. Is there any way to set the default so it will only print the
first page. Apparently going into the print menu and changing the option to
print only page 1 is too much work . A macro might work but there are
several different users on different PCs involved.

Any suggestions?
--
maryj
  #2   Report Post  
Posted to microsoft.public.word.docmanagement
Suzanne S. Barnhill Suzanne S. Barnhill is offline
external usenet poster
 
Posts: 33,624
Default set default to print first page only

You can certainly have a macro to print just the first page. Alternatively,
you can have a macro to print the current page (I couldn't do without that
one), which would be the first page when the document is first opened.
Either macro can be assigned to a keyboard shortcut or toolbar button. See
http://word.mvps.org/FAQs/MacrosVBA/...buteMacros.htm

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.

"harriettbird" wrote in message
...
Client creates many different 2 page documents but they only need to print
the first page. Is there any way to set the default so it will only print

the
first page. Apparently going into the print menu and changing the option

to
print only page 1 is too much work . A macro might work but there are
several different users on different PCs involved.

Any suggestions?
--
maryj


  #3   Report Post  
Posted to microsoft.public.word.docmanagement
Pop` Pop` is offline
external usenet poster
 
Posts: 79
Default set default to print first page only

harriettbird wrote:
Client creates many different 2 page documents but they only need to
print the first page. Is there any way to set the default so it will
only print the first page. Apparently going into the print menu and
changing the option to print only page 1 is too much work . A
macro might work but there are several different users on different
PCs involved.

Any suggestions?


Have them Customize to put "Print Current Page". One click and they're
done. Or use a script to do the same. The first page is always the current
page when a document is opened.


  #4   Report Post  
Posted to microsoft.public.word.docmanagement
harriettbird harriettbird is offline
external usenet poster
 
Posts: 3
Default set default to print first page only

Could you explain what you mean by "Customize to put "Print Current Page".
"? Are you referring to first creating a macro and then adding a toolbar
button or something else?
--


"Pop`" wrote:

harriettbird wrote:
Client creates many different 2 page documents but they only need to
print the first page. Is there any way to set the default so it will
only print the first page. Apparently going into the print menu and
changing the option to print only page 1 is too much work . A
macro might work but there are several different users on different
PCs involved.

Any suggestions?


Have them Customize to put "Print Current Page". One click and they're
done. Or use a script to do the same. The first page is always the current
page when a document is opened.



  #5   Report Post  
Posted to microsoft.public.word.docmanagement
Suzanne S. Barnhill Suzanne S. Barnhill is offline
external usenet poster
 
Posts: 33,624
Default set default to print first page only

Yes. The following macro will print the current page:

Sub PrintCurrentPage()
'
' PrintCurrentPage Macro
' Macro recorded November 30, 2002 by Suzanne S. Barnhill
'
Application.PrintOut FileName:="", Range:=wdPrintCurrentPage, Item:= _
wdPrintDocumentContent, Copies:=1, Pages:="",
PageType:=wdPrintAllPages, _
ManualDuplexPrint:=False, Collate:=True, Background:=True,
PrintToFile:= _
False, PrintZoomColumn:=0, PrintZoomRow:=0, PrintZoomPaperWidth:=0,
_
PrintZoomPaperHeight:=0
End Sub

It's a recorded macro, so it's full of junk, and I'm sure one of our VBA
experts can give you a much more elegant one, but it works fine, which
should be an encouragement to you: you can record the exact same macro (or a
macro to print page 1, for that matter) the same way I did and get something
that works fine! See http://word.mvps.org/FAQs/MacrosVBA/UsingRecorder.htm

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.

"harriettbird" wrote in message
...
Could you explain what you mean by "Customize to put "Print Current Page".
"? Are you referring to first creating a macro and then adding a toolbar
button or something else?
--


"Pop`" wrote:

harriettbird wrote:
Client creates many different 2 page documents but they only need to
print the first page. Is there any way to set the default so it will
only print the first page. Apparently going into the print menu and
changing the option to print only page 1 is too much work . A
macro might work but there are several different users on different
PCs involved.

Any suggestions?


Have them Customize to put "Print Current Page". One click and they're
done. Or use a script to do the same. The first page is always the

current
page when a document is opened.






  #6   Report Post  
Posted to microsoft.public.word.docmanagement
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default set default to print first page only

The following macros will print the current page and the first page
respectively to the active printer.

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

Sub PrintPage1()
Application.PrintOut Range:=wdPrintRangeOfPages, Pages:="1"
End Sub

See http://www.gmayor.com/installing_macro.htm

--

Graham Mayor - Word MVP

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


harriettbird wrote:
Could you explain what you mean by "Customize to put "Print Current
Page". "? Are you referring to first creating a macro and then adding
a toolbar button or something else?

harriettbird wrote:
Client creates many different 2 page documents but they only need to
print the first page. Is there any way to set the default so it will
only print the first page. Apparently going into the print menu and
changing the option to print only page 1 is too much work . A
macro might work but there are several different users on different
PCs involved.

Any suggestions?


Have them Customize to put "Print Current Page". One click and
they're done. Or use a script to do the same. The first page is
always the current page when a document is opened.



  #7   Report Post  
Posted to microsoft.public.word.docmanagement
Suzanne S. Barnhill Suzanne S. Barnhill is offline
external usenet poster
 
Posts: 33,624
Default set default to print first page only

Thanks, Graham.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.

"Graham Mayor" wrote in message
...
The following macros will print the current page and the first page
respectively to the active printer.

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

Sub PrintPage1()
Application.PrintOut Range:=wdPrintRangeOfPages, Pages:="1"
End Sub

See http://www.gmayor.com/installing_macro.htm

--

Graham Mayor - Word MVP

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


harriettbird wrote:
Could you explain what you mean by "Customize to put "Print Current
Page". "? Are you referring to first creating a macro and then adding
a toolbar button or something else?

harriettbird wrote:
Client creates many different 2 page documents but they only need to
print the first page. Is there any way to set the default so it will
only print the first page. Apparently going into the print menu and
changing the option to print only page 1 is too much work . A
macro might work but there are several different users on different
PCs involved.

Any suggestions?

Have them Customize to put "Print Current Page". One click and
they're done. Or use a script to do the same. The first page is
always the current page when a document is opened.




  #8   Report Post  
Posted to microsoft.public.word.docmanagement
harriettbird harriettbird is offline
external usenet poster
 
Posts: 3
Default set default to print first page only

Thank you!
---
harriettbird

"Graham Mayor" wrote:

The following macros will print the current page and the first page
respectively to the active printer.

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

Sub PrintPage1()
Application.PrintOut Range:=wdPrintRangeOfPages, Pages:="1"
End Sub

See http://www.gmayor.com/installing_macro.htm

--

Graham Mayor - Word MVP

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


harriettbird wrote:
Could you explain what you mean by "Customize to put "Print Current
Page". "? Are you referring to first creating a macro and then adding
a toolbar button or something else?

harriettbird wrote:
Client creates many different 2 page documents but they only need to
print the first page. Is there any way to set the default so it will
only print the first page. Apparently going into the print menu and
changing the option to print only page 1 is too much work . A
macro might work but there are several different users on different
PCs involved.

Any suggestions?

Have them Customize to put "Print Current Page". One click and
they're done. Or use a script to do the same. The first page is
always the current page when a document is opened.




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
Print job only prints on half of A4 instead of full page? Paul G Microsoft Word Help 17 May 5th 20 09:41 AM
I want to start Page '1' on the 3rd page. HOW???????? HELP????? marthamemphis Page Layout 11 October 3rd 06 12:30 AM
Print Current Page Delores Elias Microsoft Word Help 16 August 8th 06 07:30 PM
Extra Page In Print Preview Kathleen Microsoft Word Help 3 December 14th 05 11:12 AM
Print range problem with folio style page numbering [email protected] Microsoft Word Help 0 March 2nd 05 05:49 PM


All times are GMT +1. The time now is 08:10 AM.

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"