Home Devices

Printing to 2 trays at the same time

edited September 2010 in Devices
Hi,

I am new to RB and we are using RB12.01

How do I get RB to print the same document to different trays at the same
time

I want to get a shipping note to print to Tray 1 & then to Tray 2 one after
another

Comments

  • edited September 2010
    Hi Alan,

    This would require two print jobs. You can use the
    TppReport.PrinterSetup.BinName property to change bins for each job. It is
    best to use the PrinterSetup.BinNames list to assign the BinName property to
    be sure you have the correct value.

    Example (psuedo code)

    lsBinName := Report.PrinterSetup.BinNames[1]; //select the first bin
    Report.PrinterSetup.BinName := lsBinName;
    Report.Print;

    lsBinName := Report.PrinterSetup.BinNames[3]; //select the second bin
    Report.PrinterSetup.BinName := lsBinName;
    Report.Print;

    --
    Regards,

    Nico Cizik
    Digital Metaphors
    http://www.digital-metaphors.com

    Best Regards,

    Nico Cizik
    Digital Metaphors
    http://www.digital-metaphors.com
This discussion has been closed.