Per Page Copies
Hi all,
i have a report with multiples pages, in this report i need to make copies at runtime of a single page or pages, the user can modify count of copies per page, like this sample:
PAGE START => 3 Copies
PAGE TWO => 1 Copie
PAGE LAST => 5 Copies
The user select page copies in my form - outside report, before lauch preview or print.
Any ideas to make this?
i have a report with multiples pages, in this report i need to make copies at runtime of a single page or pages, the user can modify count of copies per page, like this sample:
PAGE START => 3 Copies
PAGE TWO => 1 Copie
PAGE LAST => 5 Copies
The user select page copies in my form - outside report, before lauch preview or print.
Any ideas to make this?
Comments
set the pagecount property for each design page
see the programmers manual chapter on modifying report page's properties under working with the tfrxreport component.
procedure TForm1.Button1Click(Sender: TObject);
var
page: tfrxreportpage;
begin
frxreport1.loadfromfile(wpath+'test.fr3);
Page := TfrxReportPage(frxReport1.Pages[1]);
page.PageCount := 2;
frxreport1.ShowReport;
end;
works fine for me
fr4.5.34