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
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
Uses the property, which indicates that PrintMode print multiple copies on a single page
And where PrintOnSheet property indicating the size of the page
Thank you very much.
Where is the property ?
PrintMode are : Default, Split, Scale, Join.
i have the same question, how can we change this property ?
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
commented in this post.
Where and how can I do this ??
Thanks a lot..