Problems with Bins
Hi,
I have to change bins due printing.
For example: Page 1 -> bin 2
Page 2 -> bin 1
Page 3 -> bin 2
Page 4 -> bin 1
...
Printersetttings are default.
In BeforePrint of the MasterForm I have
"Report.PrinterSetup.Binname := 'Magazin 2';"
In Subreport1 there are the 2 pages.
Page1 is completely in the Detail of Subreport1.
Page2 is completely in Groupfooter of the Subreport1Detail.
Now I change the binname during printing:
GroupFooterBand1BeforePrint:
"Report.PrinterSetup.Binname := 'Magazin 1';"
GroupFooterBand1AfterPrint:
"Report.PrinterSetup.Binname := 'Magazin 2';"
This worked fine until we got a new version of ReportBuilder(now 11.07).
Does anyone know, why this isn't functioning any longer?
Or is there a better (or new) way to force page one to be printed in
another bin as page two?
Thanks for any help,
CD
I have to change bins due printing.
For example: Page 1 -> bin 2
Page 2 -> bin 1
Page 3 -> bin 2
Page 4 -> bin 1
...
Printersetttings are default.
In BeforePrint of the MasterForm I have
"Report.PrinterSetup.Binname := 'Magazin 2';"
In Subreport1 there are the 2 pages.
Page1 is completely in the Detail of Subreport1.
Page2 is completely in Groupfooter of the Subreport1Detail.
Now I change the binname during printing:
GroupFooterBand1BeforePrint:
"Report.PrinterSetup.Binname := 'Magazin 1';"
GroupFooterBand1AfterPrint:
"Report.PrinterSetup.Binname := 'Magazin 2';"
This worked fine until we got a new version of ReportBuilder(now 11.07).
Does anyone know, why this isn't functioning any longer?
Or is there a better (or new) way to force page one to be printed in
another bin as page two?
Thanks for any help,
CD
This discussion has been closed.
Comments
Instead of manually assigning the bin name, try using the
PrinterSetup.BinNames property so you can be sure you are using the correct
value.
Report.PrinterSetup.Binname := Report.PrinterSetup.Binnames[3];
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com