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

Comments

  • edited January 2010
    Hello,
    You should to set properties:
    PrintMode to pmJoin
    PrintOnSheet to A4:

    In Designer:
    Report->PrintOptions->PrintMode = pmJoin
    Report->PrintOptions->PrintOnSheet = A4

    From Delphi code:
    frxReport1.PrintOptions.PrintMode := pmJoin;
    frxReport1.PrintOptions.PrintOnSheet := 9;
    
  • edited 4:44PM
    Thanks for this tip. I'll try it later becaue I have no Delphi at the moment.

Leave a Comment

Rich Text Editor. To edit a paragraph's style, hit tab to get to the paragraph menu. From there you will be able to pick one style. Nothing defaults to paragraph. An inline formatting menu will show up when you select text. Hit tab to get into that menu. Some elements, such as rich link embeds, images, loading indicators, and error messages may get inserted into the editor. You may navigate to these using the arrow keys inside of the editor and delete them with the delete or backspace key.