ReportViewer Control Layout for Duplex Printing

I have been looking around for a solution to this.  What I need to do is print out postcards in Landscape mode in a 2x2 format.  With careful sizing of the tablix control and the Body, I have accomplished this such that it will print this way.
The problem is that the reverse side of the page needs to contain a canned message.
There doesn't seem to be any way to control what goes on the reverse side, as only the header and footer have access to the PageNumber.    
It's almost as if I need a second Body to the report or something, but I doubt that this is allowed in the .RDLC definition.
Any assistance here would be appreciated.
Thanks in advance.

I doubt, too.
I guess the canned messages are the same,so,why not print the back first?

Similar Messages

  • Drivers for duplex printing?

    does anyone know how to find drivers for duplex printing?

    If your printer has the ability to shuffle the pages and print on both sides in one pass, duplexing is in the appropriate Driver for your Printer.
    If your printer cannot already do this, you need to do part of it manually, it takes a lot of fiddling, but the key features required are the ability to Print:
    • Odd Pages
    • Even Pages
    • specified pages in reverse order.
    Every standard Mac OS X printer Driver supports these already.
    Reverse Order is a checkbox on the Layout menu on your "Print" page.
    Odd or even or all is an option on the Paper Handling menu in your "Print" page.
    For my face-up feeding, face-down delivering Printer, I use a little saying to help me remember:
    "First, print to Odd pages evenly  (in normal order) [then shuffle Output to Input for the second side]
    Then, print the Even Pages Oddly (in Reverse order) [and if the paper does not jam, fronts and backs will be correct]"
    Your procedure will probably be different. I had to draw myself a lot of little diagrams of stacks of paper to figure it all out, and without my little saying, I would have to find that page of drawings (or re-create it from fundamental principles) to be able to print on both sides.

  • I have a HP P2015d, it works well with winx86 for duplex printing but it did not work on win7x64

    I have a HP p2015d and it work well with winxpx32, win7x86 for duplex printing but it doen't work on win7x64.
    I have installed PCL5,PCL6 downloaded from HP websie. It only allow me to print double sided manually.
    Are there any solution for my issue?

    You need a new battery. 
     

  • Has anyone found a solution for duplex printing from OS 10.8 to Xerox Phaser 8560?

    Is anyone else having duplex printing issues from OS 10.8 to Xerox Phaser 8560?

    The next time you have the problem, note the exact time: hour, minute, second.
    If you have more than one user account, these instructions must be carried out as an administrator.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Scroll back in the log to the time you noted above. Select any messages timestamped from then until the end of the episode. Copy them to the Clipboard (command-C). Paste into a reply to this message (command-V).
    When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some private information, such as your name, may appear in the log. Anonymize before posting.

  • Creating documents for duplex printing

    Hi forum,
    I've got a report that containts a repeating frame in such a way that each record is a letter to be sent to a particular person from database. Each letter might take a particular number of physical pages, depending on the amount of information that goes in it. Some of them takes one page, others take two, three, ... And here comes up the problem: As the PDF to be generated must be printed in duplex mode, I need to make sure that each letter takes an even number of pages. How can I do this?
    Thanks a lot for your eventual help.
    Luis Serrano.
    Edited by: secal on Aug 13, 2009 1:35 PM

    Hi Luis,
    Thanks a lot for your reply!
    I have done these steps but it didn't work in my case as my report has diferent design for dynamically controlling the number of records on first page as shown below:
    function CF_REC_NOFormula return Number is
    v_curr_rec number := nvl(:cf_rec_no,0);
    v_line number := 0;
    v_desc_no number := 0;
    v_which varchar2(10);
    v_num_skip number := 0;
    v_str_val varchar2(32000);
    v_serial_no varchar2(32000);
    v_serial_no1 varchar2(32000);
    begin
    /*****handling description and serial nos together as layout has to be changed for CSPL/2008/01/1919******/
         :cp_product_code := substr(:ITEM_NUMBER,1,24);
    :CP_INVOICE_QTY := substr(ltrim(rtrim(to_char(:LINE_QTY_INVOICED))),1,6);
    :CP_LINE_UOM := ltrim(rtrim(:CP_INVOICE_QTY))||' '||SUBSTR(:LINE_UOM,1,14);
    if nvl(:slno_count,0) = 0 then
         v_serial_no := null;
         v_serial_no1 := null;
    else
         v_serial_no := :Cp_serial_no;
         v_serial_no1 := :Cp_serial_no_ex;
    end if;     
    :cp_serial_no1 := rtrim(v_serial_no);
    :cp_serial_no2 := null;
    :cp_serial_no_ex1 := rtrim(v_serial_no1);
         if :line_type != 'LINE' or nvl(:Exclude_Print,'N') = 'Y' then
              return v_curr_rec;
         end if;
    srw.message(9892,'prev trx number 2: '|| :CL_PREV_TRX2|| ' curr trx number: '||:TRX_NUMBER);
    IF :TRX_NUMBER <> NVL(:CL_PREV_TRX2,'X-XX-X') THEN
         :CL_PREV_TRX2 := :TRX_NUMBER;     
         v_curr_rec := 0;
         srw.message(1777,'reset the row count');      
         END IF;
    /*********item no***********/
    if :cp_item_desc4 is not null then
         v_desc_no := 4;      
    elsif :cp_item_desc3 is not null then
         v_desc_no := 3;
    elsif :cp_item_desc2 is not null then
         v_desc_no := 2;
    elsif :cp_item_desc1 is not null then
         v_desc_no := 1;
    else
         v_desc_no := 0;
    end if;
    v_line := v_line+1;
    if (v_line+v_curr_rec) >= 19 and v_curr_rec < 19 then
         :cp_product_code := :Cp_product_code||escape_goat( 35 - ( v_line + v_curr_rec));
         :CP_LINE_UOM := :CP_LINE_UOM||escape_goat( 35 - ( v_line + v_curr_rec));
         if v_desc_no > 0 then
              if v_desc_no = 1 then
                   :cp_item_desc1 := :cp_item_desc1||chr(10);
         v_line := v_line + 1;
              elsif v_desc_no = 2 then
                   :cp_item_desc2 := :cp_item_desc2||chr(10);
         v_line := v_line + 1;
              elsif v_desc_no = 3 then
                   :cp_item_desc3 := :cp_item_desc3||chr(10);
         v_line := v_line + 1;
              elsif v_desc_no = 4 then
                   :cp_item_desc4 := :cp_item_desc4||chr(10);
         v_line := v_line + 1;
              end if;
         end if;
         if :CP_SERIAL_NO_EX1 is not null then
              :CP_SERIAL_NO_EX1 := :CP_SERIAL_NO_EX1||chr(10);
         elsif :cp_serial_no1 is not null then     
              :cp_serial_no1 := :cp_serial_no1||chr(10);
         v_line := v_line + 1;
         end if;
    return 21;
    end if;
    if v_desc_no < 1 then
         srw.message(1923,'numskip '||to_char(v_num_skip));     
         --:cp_item_desc1 := :cp_item_desc1||chr(10);
         :cp_product_code := :Cp_product_code||chr(10);
         :cp_line_uom := :cp_line_uom||chr(10);
         v_line := v_line + 1;
    if v_curr_rec < 19 and ( v_line + v_curr_rec) >= 19 then      
              :cp_product_code := :Cp_product_code||escape_goat( 35 - ( v_line + v_curr_rec));
              :cp_line_uom := :cp_line_uom||escape_goat(35 - ( v_line + v_curr_rec));
              return 21;
    end if;     
    end if;
    for xt in 1..v_desc_no loop
    v_line := v_line + 1;
    if v_curr_rec < 19 and ( v_line + v_curr_rec) >= 19 then
         if xt = 1 then
    :cp_item_desc1 := :cp_item_desc1|| escape_goat( 35 - ( v_line + v_curr_rec));
         elsif xt = 2 then
              :cp_item_desc2 := :cp_item_desc2|| escape_goat( 35 - ( v_line + v_curr_rec));
         elsif xt = 3 then
              :cp_item_desc3 := :cp_item_desc3|| escape_goat( 35 - ( v_line + v_curr_rec));
         elsif xt = 4 then
              :cp_item_desc4 := :cp_item_desc4|| escape_goat( 35 - ( v_line + v_curr_rec));
         end if;
         if :slno_count > 0 then
              :cp_serial_no1 := :cp_serial_no1||chr(10);
         v_line := v_line + 1;
         end if;
    return 21;
    end if;
    end loop;
    if v_desc_no > 0 then
              if v_desc_no = 1 then
                   :cp_item_desc1 := :cp_item_desc1||chr(10);
         v_line := v_line + 1;
    if v_curr_rec < 19 and ( v_line + v_curr_rec) >= 19 then
    :cp_item_desc1 := :cp_item_desc1|| escape_goat( 35 - ( v_line + v_curr_rec));
              v_curr_rec := 21;
    end if;
              elsif v_desc_no = 2 then
                   :cp_item_desc2 := :cp_item_desc2||chr(10);
         v_line := v_line + 1;
    if v_curr_rec < 19 and ( v_line + v_curr_rec) >= 19 then
    :cp_item_desc2 := :cp_item_desc2|| escape_goat( 35 - ( v_line + v_curr_rec));
              v_curr_rec := 21;
    end if;     
              elsif v_desc_no = 3 then
                   :cp_item_desc3 := :cp_item_desc3||chr(10);
         v_line := v_line + 1;
    if v_curr_rec < 19 and ( v_line + v_curr_rec) >= 19 then
    :cp_item_desc3 := :cp_item_desc3|| escape_goat( 35 - ( v_line + v_curr_rec));
              v_curr_rec := 21;
    end if;     
              elsif v_desc_no = 4 then
                   :cp_item_desc4 := :cp_item_desc4||chr(10);
         v_line := v_line + 1;
    if v_curr_rec < 19 and ( v_line + v_curr_rec) >= 19 then
    :cp_item_desc4 := :cp_item_desc4|| escape_goat( 35 - ( v_line + v_curr_rec));
              v_curr_rec := 21;
    end if;     
         end if;
    end if;
    /*********item no***********/
    /******Serial no********/
    v_num_skip := nvl(:slno_count,0);
         if v_curr_rec < 19 and ( v_line + v_curr_rec) >= 19 then
    if v_num_skip > 0 then
         if :CP_SERIAL_NO_EX1 is not null then
              :CP_SERIAL_NO_EX1 := :CP_SERIAL_NO_EX1||chr(10);
         else     
              :cp_serial_no1 := :cp_serial_no1||chr(10);
         v_line := v_line + 1;
         end if;
    end if;
         return 21;
         end if;               
         for xt in 1..v_num_skip loop
    v_line := v_line + 1;
    if v_curr_rec < 19 and ( v_line + v_curr_rec) >= 19 then
    if :slno_count > 1 then      
    v_str_val := v_serial_no||chr(10);
         :cp_serial_no1 := substr(v_serial_no,1,instr(v_str_val,chr(10),1,xt) - 1);
         :cp_serial_no2 := substr(v_serial_no, instr(v_str_val,chr(10),1,xt) + 1,length(v_serial_no));
         if :CP_SERIAL_NO_EX1 is not null then
              :CP_SERIAL_NO_EX1 := :CP_SERIAL_NO_EX1||chr(10);
         else
              if :cp_serial_no2 is not null then
                        :cp_serial_no2 := :cp_serial_no2||chr(10);
              end if;          
         end if;     
    :cp_serial_no1 := :cp_serial_no1 || escape_goat( 35 - ( v_line + v_curr_rec));
    return 21;
    end if;
    end if;
    end loop;
    if v_num_skip > 0 then
              if :CP_SERIAL_NO_EX1 is not null then
              :CP_SERIAL_NO_EX1 := :CP_SERIAL_NO_EX1||chr(10);
         else     
              :cp_serial_no1 := :cp_serial_no1||chr(10);
         v_line := v_line + 1;
         end if;
    if v_curr_rec < 19 and ( v_line + v_curr_rec) >= 19 then
    :cp_serial_no1 := :cp_serial_no1 || escape_goat( 35 - ( v_line + v_curr_rec));
              return 21;
    end if;     
    end if;
    return v_line + v_curr_rec;
    end;
    Which is very hard to understand.
    This logic is jumping thru' the frame on first page but dont have any effect on the 2nd page and so on.
    Thanks,
    Sumir Chawla

  • Can an officejet 6500a be upgraded for duplex printing

    I have an Officejet 6500a without the duplex option. Can I upgarde this printer by simple buying and installing the duplexer? Many thanks ...

    For the E710a printer CN555a, the duplexer is not an option. It may physically attach but is not designed to work with that particular model.
    007OHMSS
    I was a support engineer for HP.
    If the advice resolved the situation, please mark it as a solution. Thank you.

  • How do you control layouts of label printing from address book / contacts

    Has anyone found a smart way or some smart software to help me with this ?
    I want to select  a subset of my contacts in address book and give the group a name, like "Xmas cards". As I add new contacts I want to occasionally add some of them to this sub group.
    Then at Xmas I want to print off the postal addresses of the contacts in this sub group onto standard Avery labels to use on my Xmas card envelopes.
    I know there is a way of printing from address book to labels, but I don't seem to have any control on the label font, font size or layout.
    Ideally I would like to use a currently unused field in address book to store the way I would like the first line of the contact to print such as " Mr and Mrs Smith" or "John Smith and Jane Doe" - which may be different from the way record the  "name" field. So I need flexibility of choosing which fields to print in which order on the labels
    Does anyone else do something like this and how? Do you use some third party software to help manage it?

    Hi jhrichmond,
    Welcome to the Support Communities!
    The article below may be able to help you with this issue.
    You might be able to do something with the Company field from the Print menu.
    Address Book 6.x: Print contact information
    http://support.apple.com/kb/ph4683
    Cheers,
    - Judy

  • Print-control commands for dotmatrix printer

    dear all,
    Here my requirement is we are using datamax printer ( dotmatrix printer) for printing script and i need some commands for that.
    please reply soon.
    thanx inadvance

    Hi Don
    Thank's for your reply.
    That's excactly what we want to do: within the same report we'll use different trays and/or number of copies.
    In the meantime, we talked to the manufacturer of the ELP module. They told us that the print stream contains parts of the correct sequence, but unfortunately the trailing two closing paranthesis are missing. For that reason, the command string is not recognized as valid command and is therefore printed "as is".
    We tried to add additional characters after the trailing paranthesis, again no success...
    The next step is to use the newer CR runtime, as Nikhil suggested in his answer.
    Weird problem...
    Regards
    Daniel

  • When viewing PDF files in a window in firefox the popup control bar for zoom, print,page up or down does not work. Any suggsetions other than stop opening up pdf files in a firefox window and have them open in adobe reader?

    Firefox 10
    Adobe Acrobat Plug in 10.0.0.396

    Perform the suggestions mentioned in the following articles:
    * [https://support.mozilla.com/en-US/kb/Template:clearCookiesCache/ Clear Cookies & Cache]
    * [[Using the Adobe Reader plugin with Firefox]]
    * [[Opening PDF files within Firefox]]
    Check and tell if its working.

  • Duplex printing for last 2 pages only

    A customer has an invoice report where they want the terms and conditions (which are 2 pages) duplexed while the report itself is not printed that way.  Any ideas if this can be done using native SSRS?
    Sherry

    I am not sure this will work or not, but you could embed the printer code for duplex printing into your stream. 
    For HP printers:
    http://h20566.www2.hp.com/portal/site/hpsc/template.PAGE/public/kb/docDisplay/?spf_p.tpst=kbDocDisplay&spf_p.prp_kbDocDisplay=wsrp-navigationalState%3DdocId%253Demr_na-bpl02705-2%257CdocLocale%253D%257CcalledBy%253D&javax.portlet.begCacheTok=com.vignette.cachetoken&javax.portlet.endCacheTok=com.vignette.cachetoken#top
    Simplex/Duplex operation
    NOTE: This is only
    applicable to duplex capable printers.
    Function
    Parameter
    Command
    Decimal Value
    Hexadecimal
    Value
    Simplex Print
    Simplex
    Ec&l0S (s)
    027 038 108 048 083 (115)
    1B 26 6C 30 53 (73)
    Duplex Print
    Long-Edge Binding
    Ec&l1S (s)
    027 038 108 049 083 (115)
    1B 26 6C 31 53 (73)
    Duplex Print
    Short-Edge Binding
    Ec&l2S (s)
    027 038 108 050 083 (115)
    1B 26 6C 32 53 (73)
    Long-Edge (left) Offset Registration
    # of Decipoints (1/720")
    Ec&l#U (u)
    027 038 108 #...# 085 (117)
    1B 26 6C #...# 55 (75)
    Short-Edge (Top) Offset Registration
    # of Decipoints (1/720")
    Ec&l#Z (z)
    027 038 108 #...# 090 (122)
    1B 26 6C #...# 5A (7A)
    Page Side Selection
    Next Side
    Ec&a0G (g)
    027 038 097 048 071 (103)
    1B 26 61 30 47 (67)
    Page Side Selection
    Front Side
    Ec&a1G (g)
    027 038 097 049 071 (103)
    1B 26 61 31 47 (67)
    Page Side Selection
    Back Side
    Ec&a2G (g)
    027 038 097 050 071 (103)
    1B 26 61 32 47 (67)

  • HP Laserjet 3015; Win 7; no duplex printing

    I just upgraded to a new computer with Windows 7 using my old Laserjet 3015 (3-in-1) printer. Old setup with XP I could print duplex (printing on both sides). Now I cannot with Win 7.. I checked both printer-properties and printer-preferences for duplex printing.,Doesn't do duplex. I downloaded a new (?) driver for PCL5, no change. Called HP Help, after 1/2 hour and checking  the same, did not help.
    Can anyone suggest what should I do?
    Thanks in advance
    Peter

    Hi Peter,
    Please check the Device Settings configuration:
    Enter Control Panel > Devices and Printers
    Right click the PCL 5 printer icon, then click Printer Properties.
    Click the Device Settings tab.
    Locate the Two-Sided Printing Accessory option - is it set as installed?
    If not, change the value to Installed.
    Can you see the Two-Sided printing option under the Printing Shortcuts / Finishing tab?
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • Duplex Printing Problem in Adobe Reader X (Mac)

    My normal printer setting is for duplex printing. However, Adobe Reader X will only print on one side of the paper.. This is on a MacPro under Mac OSX 10.6.6 and Adobe Reader X Version 10.0.1 printing to a Canon IP4500 inkjet printer. Other applications duplex fine.
    Any one else with this problem? Fixes or workarounds?

    After having the problem / aggravation, I went through each area trying to
    learn how to get past it.  Finally, I checkmarked 3x "Don't Show Me This Again" 
    Then I established a default printer thereby forcing Adobe to retain print preferences
    instead of  defaulting to "Any Printer" and losing custom settings
    STEPS I TOOK (you may know of something faster, easier?)
    CTRL P  or  File, Print to receive standard print dialogue
    Within "Printer:"  use drop down to select  "PRINT & FAX Preferences...."
    Note: You can set print & fax preferences thru System Preferences, but for
    now we're here
    Select the printer you will normally use and set up a default printer (for Adobe)
    If the Lock at bottom left is closed it will require the system admin ID and PWD
    to unlock/lock in order to make changes :-)
    Once finished close this (top left)
    You will be returned to this panel
    To the right of the "Printer:" drop down is the arrow that expands your options,
    make sure it is aiming UP
    Middle of screen is "Layout"  Select the drop down and select "Two-Sided Printing"
    Look at the next screen image posted below and you will see there's more steps to
    follow for two sided printing
    Check mark "Print Both Sides"
    By Re-Opening the Drop down now showing "Two-Side Printing", you can of
    course adjust other items while here
    Paper Type/Quality allows you to select items such as print quality, color settings
    Select "Print" (bottom right of screen) to return to Adobe Reader Print Page
    Save time by opening the "Presets:" dropdown and save this as a custom print setup name
       i.e.  grayscale_DblSided, Color_DblSided...
    Finally, Check Mark  "Reverse Pages" to print Back to Front and help Adobe
    not to print a single sided first page and double sided pages for the others... Nice!
    It's time to press "OK" and hover over the printer to ensure Adobe didn't send
    instructions to print your 100 single side pages despite all best efforts
    Since going through this rigamarole I have not had to reset it every time
    Message was edited by: MACGASM
    Message was edited by: MACGASM

  • SAPScript Duplex Printing (SD Invoice)

    Hi all gurus,
    After reading some threads and as I told on this "answered" question from Manfred:
    Re: Duplex Printing SapScript: Invoice - Printer tries but fails backside?
    We need to print SD invoices in duplex mode.
    Settings that we have changed by now:
    - Sapscript: first page printmode as DUPLEX, next as default -> OK
    - Since read from official SAP documentation, for sapscript duplex you don't need to change display type or device type from SPAD. So I left the one was been used. Anyway, to be sure, I change its print mode to DUPLEX. I have also check if the print control SPMDU appears on the device -> OK
    - The printer we use is an OCE MP 1020 which can print on duplex mode and has PCL
    - I have tried printing the text SAPSCRIPT-PRINTMODETEST from SO10 but duplex does not work. They print on different pages.
    Following those instructions, I could not manage to do it.
    I have some questions:
    - Do we need to configure the printer locally in any way?
    - About the example "SAPSCRIPT-PRINTMODETEST", do you need to configure something before testing it for duplex printing?
    Could you please explain the needed steps to accomplish SAPScript duplex print?
    Thanks in advance,
    John

    Hi Aidan,
    Thanks for your response.
    I have changed the device type from SAPWIN to HPLJ4000.
    When I try to print the text: SAPSCRIPT-PRINTMODETEST
    The SAPLPD.LOG says:
    (11:10:16) Number of processors: 4
    (11:10:16) Icon DLL loaded.
    (11:10:16)
    (11:10:16) Network Communication via SAP-NiLib
    (11:10:16) Hostname: xxxxxxxx
    (11:10:16) IP Address: 9954064.2684488.2684488.1617840
    (11:10:16)
    (11:10:16) SAPLPD Version 6.29 for Windows/NT (OPT) is listening
    (11:10:16) OS-Info: version = 6.1, build = 0/7601, text = Service Pack 1
    (11:10:16) Copyright © 1992-2001 SAP AG
    (11:10:16)
    (11:10:26)
    (11:10:26) Receive job for printer __DEFAULT (Berkeley LPD protocol / RFC1179)
    (11:10:26) send_status called
    (11:10:26) send_status called
    (11:10:26) send_status called
    (11:10:26) send_status called
    (11:10:26) send_status called
    (11:10:26) Job 002aBOrZ.IS1 for user XXXXXX queued.
    (11:10:26) Job 002aBOrZ.IS1 (raw) started on printer \XXXXXXXXXX
    (11:10:26) Job 002aBOrZ.IS1 (raw) with 4955 bytes finished
    The printer is not printing any page :S
    This is the printer model:
    http://www.oce.co.uk/products/mp1020/specifications.aspx
    It supports PCL and Postscript
    What could be the problem?
    Thanks in advance

  • Acrobat X: Lost default duplex print

    When I upgraded, I lost the ability to duplex print by default and would like to know if I can restore it. I'm working on a mac and there is no duplex option in Acrobat's print command. My printer settings are set on duplex and it operates just fine in other programs. In Acrobat, I have to go into its printer settings via Properties to select duplex. I just want Acrobat to not override my printer settings and default to single-sided when I want 2-sided. Is there way to at least change the default print settings in Acrobat without having to change the Properties setting for each and every file? What an odd feature for Adobe to put into this software and I hope a fix is imminent if there is no simple solution in the current version. One expects an upgrade to be an improvement only in areas where it improves the workflow, not detracts from it, yes?

    Dov Isaacs wrote:
    Please understand that this forum is absolutely not a means of communicating directly with Adobe. It s a User to User Forum primarily provided as a means of end users assisting each other. Adobe executives and management do not monitor these forums directly. Some Adobe employees do monitor these forums, pretty much on a volunteer basis and try to provide some assistance and feedback to decision makers.
    The changes in Acrobat & Reader 10.1.2 associated with printing were clearly a big problem. As far as we know,  no one actually lost the capability of controlling simplex versus duplex printing, but rather, a very ill-conceived mechanism was introduced that assumed that if your printer has duplex capabilities of any type, you would or should use them.
    The plans of record are to provide a fix for this issue in the next quarterly update to Acrobat and Reader due next month. There will be a control for duplex in the print dialog, but it will only reflect what you have already set in the printer properties (either on Windows or Macintosh). The dialog will allow you to change that setting while in Acrobat, but it will not make assumptions as to what you could or should do vis-a-vis duplex printing. In this respect, it will be similar to print dialogs in applications such as Microsoft Office in terms of allowing access to duplex printing, but not forcing it.
    However, there is something peculiar in your particular situation. Normally, with Acrobat & Reader 10.1.2, if the printer supports duplex as determined by the printer's PPD file (for PostScript devices) or from the driver otherwise, you would see a duplex control in the print dialog itself. The fact that your printer supports duplex (correct?) and that you aren't seeing the duplex control in the print dialog is a problem we aren't currently aware of. You are seeing the forcing of duplex without the ability to control it from the print dialog? Correct? I'll send the report of this to the appropriate group within Acrobat engineering.
             - Dov
    Hello Dov.
    Thank you for your input. Can you confirm that these strange printing issues would also cause my PDF files to print in color and 1-sided even when the default in Control panel for my printer is 2-sided and B&W?
    Thanks!
    -cw

  • Adobe Reader X duplex printing issue

    Each time I try to print a pdf, the application changes the default duplex from no duplex (single sided set in the properties of the printer in windows control panel ) to duplex(print on both sides).  I can uncheck the box to have it not print the duplex.
    This is frustrating because each time I open a new pdf I have to do this?
    Adobe reader X
    Printer is a Kyocera 1128
    Any one got any ideas?

    I was having the same problem, and I found the answer on another site. To fix it, you need to edit/create a registry key:
    Open Regedit, and surf to HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\10.0\AVGeneral
    Look for a DWORD named "iDuplexMode". If it's there, change the value to 1
    If it's not there, create it - Add a new DWORD, name it "iDuplexMode" (no quotes) and enter the value 1
    Close Regedit, and restart Reader if you had it running.
    Now the printing dialog will default to having duplex turned off.
    The only problem with this is it will only work for the current user...For multi-account machines, you'll have to do this for every user, or create a .reg file for them to import.

Maybe you are looking for

  • Multiple Libraries for iTunes

    I am wondering if there is any way to create multiple libraries for my music? I use my iTunes for both work and personal music and would like to be able to move my work music into a separate library. I've seen this concept in accounting programs, whe

  • Street route maintanance in third party system

    Dear All, I have mapped street route in SAP by using Tcode EL40, But I want the orders to be downloaded in thrid party system in the same order in the way the street route has been maintaned. I am downloading the orders using getlist bapi for meter r

  • Purchased itunes movie stops midway through operating

    I purchased a movie from the itunes store and when i play it, it will stop half way through the movie. It says its playing, not paused. I have tried to start it from different points but if i start it in the later half it forces me back to the middle

  • Stock report using actual price

    HI ALL We want to have a report which is similar to J3RFLVMOBVED (  Stock on Start.Goods receipt. Goods issue.Stock on End ) But the value is using standard price. We already activated material ledger which will calculate actual price and update to p

  • Addition of field to field catalog in order to create condition table

    hi,    I need to add field to SAP 5.0 Field Catalog to allow for creation of custom Condition Table. A field named “Serial no. profile”  exists in SAP 4.6c. The equivalent should be added or created in the SAP 5.0 Field Catalog. How do i do this. Plz