How to print several A6-Pages on one A4 page
Hello,
I got a problem. I send data from Delphi via the frxUserDataset to the report. Pagesize is A4. Now, I want set up the bands in that way, that I can print as many A6-pages as possible on this A4 page. The aim is not to waste tons of paper.
How can I do this?
Thanks
I got a problem. I send data from Delphi via the frxUserDataset to the report. Pagesize is A4. Now, I want set up the bands in that way, that I can print as many A6-pages as possible on this A4 page. The aim is not to waste tons of paper.
How can I do this?
Thanks
Comments
You should to set properties:
PrintMode to pmJoin
PrintOnSheet to A4:
In Designer:
Report->PrintOptions->PrintMode = pmJoin
Report->PrintOptions->PrintOnSheet = A4
From Delphi code: