Switch between pages
Hello,
I've two pages defined. The first page with address and the second page without this.
On the first page I've placed a Master data band.
If the master data print more than one (first) page, then repeats FR the first page layout. I would, that FR after the first page the layout from second page use.
Is it possible?
Thanks for your help.
I've two pages defined. The first page with address and the second page without this.
On the first page I've placed a Master data band.
If the master data print more than one (first) page, then repeats FR the first page layout. I would, that FR after the first page the layout from second page use.
Is it possible?
Thanks for your help.
Comments
How the TfrReport.ReportType = rtMultiple works:
it still produces pages in order 1.1.1.2.2.2, but does this in a cycle:
(1.1.1.2.2.2)(1.1.1.2.2.2)...
If you want to change page order to 1.2.1.2.1.2, you have to assign your dataset to
TfrReport.DataSet and set ReportType to rtMultiple. You also shouldn't use databands (either use reporttitle or databand with one virtual record). I.e. one report page should produce one preview page, in this case you'll get order (1.2)(1.2)(1.2).