Reply
 
Thread Tools Display Modes
  #1   Report Post  
Posted to microsoft.public.word.docmanagement
Hooper Hooper is offline
external usenet poster
 
Posts: 3
Default Set duplex option on a document

Hello,

I looking to set a document to always print duplex no matter what type (i.e.
Hp or Lexmark). My goal is to set the document to print duplex and if someone
else opens it and prints duplex already.
  #2   Report Post  
Posted to microsoft.public.word.docmanagement
Hooper Hooper is offline
external usenet poster
 
Posts: 3
Default Set duplex option on a document

I said that wrong....

I looking to set a document to always print duplex no matter what type of
printer default is set to. (i.e. Hp or Lexmark). My goal is to set the
document to print duplex and when someone else opens it, doc is set to print
duplex already.

"Hooper" wrote:

Hello,

I looking to set a document to always print duplex no matter what type (i.e.
Hp or Lexmark). My goal is to set the document to print duplex and if someone
else opens it and prints duplex already.

  #3   Report Post  
Posted to microsoft.public.word.docmanagement
Jay Freedman Jay Freedman is offline
external usenet poster
 
Posts: 9,854
Default Set duplex option on a document

There is no simple setting that's saved in the document file to control
duplex printing. You'll need some macro code, which you can find at
http://pubs.logicalexpressions.com/P...cle.asp?ID=116. Then
you'll have to deal with the security warning that you get when there's
macro code in a document (or, if the user's macro security level is High,
your code just won't run at all...).

Also, what happens if the user's printer doesn't support duplexing?

--
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.

Hooper wrote:
I said that wrong....

I looking to set a document to always print duplex no matter what
type of printer default is set to. (i.e. Hp or Lexmark). My goal is
to set the document to print duplex and when someone else opens it,
doc is set to print duplex already.

"Hooper" wrote:

Hello,

I looking to set a document to always print duplex no matter what
type (i.e. Hp or Lexmark). My goal is to set the document to print
duplex and if someone else opens it and prints duplex already.



  #4   Report Post  
Posted to microsoft.public.word.docmanagement
Hooper Hooper is offline
external usenet poster
 
Posts: 3
Default Set duplex option on a document

Thanks Jay,

All the printers setup have are duplex. I have a certain documents that need
to set for duplex. Thanks for the heads up.

I just looked at the code you referenced. I saw the warning too! All I need
to do is set the duplex code. Based on the warning, should I copy everything
and set all the printer options you listed? Also, will a user be able to
change options when they go to print?

Thanks

Marisa
"Jay Freedman" wrote:

There is no simple setting that's saved in the document file to control
duplex printing. You'll need some macro code, which you can find at
http://pubs.logicalexpressions.com/P...cle.asp?ID=116. Then
you'll have to deal with the security warning that you get when there's
macro code in a document (or, if the user's macro security level is High,
your code just won't run at all...).

Also, what happens if the user's printer doesn't support duplexing?

--
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.

Hooper wrote:
I said that wrong....

I looking to set a document to always print duplex no matter what
type of printer default is set to. (i.e. Hp or Lexmark). My goal is
to set the document to print duplex and when someone else opens it,
doc is set to print duplex already.

"Hooper" wrote:

Hello,

I looking to set a document to always print duplex no matter what
type (i.e. Hp or Lexmark). My goal is to set the document to print
duplex and if someone else opens it and prints duplex already.




  #5   Report Post  
Posted to microsoft.public.word.docmanagement
Jay Freedman Jay Freedman is offline
external usenet poster
 
Posts: 9,854
Default Set duplex option on a document

I'm sorry, I can't answer those questions. Jonathan West, the author
of the article and our resident printing guru, is on holidays at the
moment and enjoying the offline life. :-) I hope when he returns
he'll tell you what's needed.

--
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.

On Wed, 6 Sep 2006 12:33:02 -0700, Hooper
wrote:

Thanks Jay,

All the printers setup have are duplex. I have a certain documents that need
to set for duplex. Thanks for the heads up.

I just looked at the code you referenced. I saw the warning too! All I need
to do is set the duplex code. Based on the warning, should I copy everything
and set all the printer options you listed? Also, will a user be able to
change options when they go to print?

Thanks

Marisa
"Jay Freedman" wrote:

There is no simple setting that's saved in the document file to control
duplex printing. You'll need some macro code, which you can find at
http://pubs.logicalexpressions.com/P...cle.asp?ID=116. Then
you'll have to deal with the security warning that you get when there's
macro code in a document (or, if the user's macro security level is High,
your code just won't run at all...).

Also, what happens if the user's printer doesn't support duplexing?

--
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.

Hooper wrote:
I said that wrong....

I looking to set a document to always print duplex no matter what
type of printer default is set to. (i.e. Hp or Lexmark). My goal is
to set the document to print duplex and when someone else opens it,
doc is set to print duplex already.

"Hooper" wrote:

Hello,

I looking to set a document to always print duplex no matter what
type (i.e. Hp or Lexmark). My goal is to set the document to print
duplex and if someone else opens it and prints duplex already.






  #6   Report Post  
Posted to microsoft.public.word.docmanagement
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default Set duplex option on a document

If your printers accept PCL commands, you may be able to use a PRINT field.
A PRINT field is simply a type of field that allows you to send instructions
directly to the printer.

There are 3 possible data values for duplex setting: PRINT 27"&l0S" simplex
PRINT 27"&l1S" vertical duplex . PRINT 27"&l2S" horizontal duplex
(bookformat)

The codes after PRINT are 27 (escape), double quote, ampersand, lowercase L,
0, 1 or 2, uppercase S and finally terminated with a double quote.

Thus for horizontal duplex you would insert the following field :
{ PRINT 27"&l2S" }


--

Graham Mayor - Word MVP

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


Hooper wrote:
Thanks Jay,

All the printers setup have are duplex. I have a certain documents
that need to set for duplex. Thanks for the heads up.

I just looked at the code you referenced. I saw the warning too! All
I need to do is set the duplex code. Based on the warning, should I
copy everything and set all the printer options you listed? Also,
will a user be able to change options when they go to print?

Thanks

Marisa
"Jay Freedman" wrote:

There is no simple setting that's saved in the document file to
control duplex printing. You'll need some macro code, which you can
find at
http://pubs.logicalexpressions.com/P...cle.asp?ID=116.
Then you'll have to deal with the security warning that you get when
there's macro code in a document (or, if the user's macro security
level is High, your code just won't run at all...).

Also, what happens if the user's printer doesn't support duplexing?

--
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.

Hooper wrote:
I said that wrong....

I looking to set a document to always print duplex no matter what
type of printer default is set to. (i.e. Hp or Lexmark). My goal is
to set the document to print duplex and when someone else opens it,
doc is set to print duplex already.

"Hooper" wrote:

Hello,

I looking to set a document to always print duplex no matter what
type (i.e. Hp or Lexmark). My goal is to set the document to print
duplex and if someone else opens it and prints duplex already.



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
Mail merge - Ask / If function Ian Rowe Mailmerge 2 May 5th 06 02:52 PM
Problems using document map kempofighter Microsoft Word Help 4 January 19th 06 04:33 PM
Why is "protect document" option unavailable in tools and forms? Blakthorne Microsoft Word Help 3 August 22nd 05 07:18 PM
How do I unprotect my document when the option is greyed out? Murray Girl Microsoft Word Help 2 August 11th 05 09:08 PM
i cannot protect my Outlook document; the option is shaded out. susan dew Microsoft Word Help 7 July 25th 05 07:51 AM


All times are GMT +1. The time now is 12:43 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"