Repeat report in the same page

I have a report in Letter size, however the data only use the half of the page. I need to print the same report twice in the same page.

How can I do this using Fastreport?

I use FastReport 4.7.5 and Delphi 7.

Thank you in advance.

Juan Carlos Arteaga F.
ARTESOFT

Comments

  • edited 4:12AM

    Uses the property, which indicates that PrintMode print multiple copies on a single page
    And where PrintOnSheet property indicating the size of the page
  • edited June 2009
    It works fine.

    Thank you very much.
  • edited 4:12AM
    Uses the property, which indicates that PrintMode print multiple copies on a single page


    Where is the property ?
    PrintMode are : Default, Split, Scale, Join.

  • adaada
    edited 4:12AM
    pele wrote: »


    Where is the property ?
    PrintMode are : Default, Split, Scale, Join.


    i have the same question, how can we change this property ?
  • edited 4:12AM
    There is a soloution for this:
    you can add a subreport and place your items in it. then you can use this subreport in main reportpage. put this subreport in a data part and add this code :

    private void _StartReport(object sender, EventArgs e)
    {
    Data1.RowCount = Report.PrintSettings.Copies;
    Report.PrintSettings.Copies = 1;
    }

    your data will repeat as numper of print copies
  • Leo BidiLeo Bidi Montevideo, Uruguay
    edited 4:12AM
    I know this is an old topic want I need to do the same and I dont find non the report options or anything else
    commented in this post.

    Where and how can I do this ??

    Thanks a lot..

Leave a Comment