Printing default for Word

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How do I establish different print settings as the default in Word 2003? I
want to quick print, in black and white, last page first without changing the
print properties each time.

Thanks!
 
You're going to have to change your printer settings.
 
How do I change the printer settings?



JoAnn Paules said:
You're going to have to change your printer settings.

--

JoAnn Paules
MVP Microsoft [Publisher]



Lilac30750 said:
How do I establish different print settings as the default in Word 2003?
I
want to quick print, in black and white, last page first without changing
the
print properties each time.

Thanks!
 
The way you've been doing it. I don't think you can save printer settings
within the document.

--

JoAnn Paules
MVP Microsoft [Publisher]



Lilac30750 said:
How do I change the printer settings?



JoAnn Paules said:
You're going to have to change your printer settings.

--

JoAnn Paules
MVP Microsoft [Publisher]



Lilac30750 said:
How do I establish different print settings as the default in Word
2003?
I
want to quick print, in black and white, last page first without
changing
the
print properties each time.

Thanks!
 
True but you could use a macro.

There are two ways of doing this - either install a copy of the printer
driver with the alternative settings and switch to that to print using the
first macro, or switch the print options as in the second macro. Put the
name of the copy printer (from the file > print dialog) where indicated and
add the macro to a toolbar button.
http://www.gmayor.com/installing_macro.htm

Sub Printer2()
Dim sCurrentPrinter As String
sCurrentPrinter = ActivePrinter
ActivePrinter = sCurrentPrinterActivePrinter = "Put your copy printer name
here"
Application.PrintOut FileName:=""
ActivePrinter = sCurrentPrinter
End Sub


Sub DraftPrint()
With Options
.DefaultTray = "Use printer settings"
.PrintDraft = True
.PrintReverse = True
End With
Application.PrintOut FileName:=""
With Options
.PrintDraft = False
.PrintReverse = False
End With
End Sub


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

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
The way you've been doing it. I don't think you can save printer
settings within the document.


Lilac30750 said:
How do I change the printer settings?



JoAnn Paules said:
You're going to have to change your printer settings.

--

JoAnn Paules
MVP Microsoft [Publisher]



How do I establish different print settings as the default in Word
2003?
I
want to quick print, in black and white, last page first without
changing
the
print properties each time.

Thanks!
 
I wondered if it could be done with a macro but my macro experience is very
limited. I tend to do things repeatedly rather than take the time to create
a macro. (I always manage to booger something up in the process.)

--

JoAnn Paules
MVP Microsoft [Publisher]



Graham Mayor said:
True but you could use a macro.

There are two ways of doing this - either install a copy of the printer
driver with the alternative settings and switch to that to print using the
first macro, or switch the print options as in the second macro. Put the
name of the copy printer (from the file > print dialog) where indicated
and add the macro to a toolbar button.
http://www.gmayor.com/installing_macro.htm

Sub Printer2()
Dim sCurrentPrinter As String
sCurrentPrinter = ActivePrinter
ActivePrinter = sCurrentPrinterActivePrinter = "Put your copy printer name
here"
Application.PrintOut FileName:=""
ActivePrinter = sCurrentPrinter
End Sub


Sub DraftPrint()
With Options
.DefaultTray = "Use printer settings"
.PrintDraft = True
.PrintReverse = True
End With
Application.PrintOut FileName:=""
With Options
.PrintDraft = False
.PrintReverse = False
End With
End Sub


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

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
The way you've been doing it. I don't think you can save printer
settings within the document.


Lilac30750 said:
How do I change the printer settings?



:

You're going to have to change your printer settings.

--

JoAnn Paules
MVP Microsoft [Publisher]



How do I establish different print settings as the default in Word
2003?
I
want to quick print, in black and white, last page first without
changing
the
print properties each time.

Thanks!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top