Design a report with multiple pages
Design a report with multiple pages
Hello
I need a report that have multiple pages for each record in the data source.
It should look like
Invoice1
Page1
Page2
Page3
Invoice2
Page1
Page2
Invoice3
Page1
Page2
Page3
I have tried it with childbands on one page and that works but I have a fix layout for each page and
I don't know how I can split the databand on multiple pages.
Ralf
I need a report that have multiple pages for each record in the data source.
It should look like
Invoice1
Page1
Page2
Page3
Invoice2
Page1
Page2
Invoice3
Page1
Page2
Page3
I have tried it with childbands on one page and that works but I have a fix layout for each page and
I don't know how I can split the databand on multiple pages.
Ralf
Design a report with multiple pages
Hello,
You can set the properties "New Page After" on DataBand component in true.
Thank you.
You can set the properties "New Page After" on DataBand component in true.
Thank you.
Design a report with multiple pages
Hello
>You can set the properties "New Page After" on DataBand component in true.
I know this but how can I design my pages. Every page has a A4 format and I need this space.
For every detailrecord in my databand I need 3 pages on A4 format.
Ralf
>You can set the properties "New Page After" on DataBand component in true.
I know this but how can I design my pages. Every page has a A4 format and I need this space.
For every detailrecord in my databand I need 3 pages on A4 format.
Ralf
Design a report with multiple pages
Hello,
or
Thank you.
You can use following expression in events "After Print" on DataBand component:vorauler wrote: Every page has a A4 format and I need this space.
For every detailrecord in my databand I need 3 pages on A4 format.
Code: Select all
int CountPageSpace = 3;
for (int i = 0; i <= CountPageSpace; i++)
{
Engine.NewPage();
}
Code: Select all
Engine.NewPage();
Engine.NewPage();
Engine.NewPage();
Engine.NewPage();
Design a report with multiple pages
Hello
Should I sent you sample pdf how it looks like yet?
Ralf
Additionaly every page from this three pages have a different layout.Every page has a A4 format and I need this space.
For every detailrecord in my databand I need 3 pages on A4 format.
Should I sent you sample pdf how it looks like yet?
Ralf
Design a report with multiple pages
Hello,
Thank you.
Yes, it would give a better understanding of your problem.vorauler wrote:Should I sent you sample pdf how it looks like yet?
Thank you.
Design a report with multiple pages
Hello
To which email address?
Ralf
To which email address?
Ralf
Design a report with multiple pages
Hello,
Thank you.
support[at]stimulsoft.comvorauler wrote:To which email address?
Thank you.
Design a report with multiple pages
Done.
Thanks for your effort.
Ralf
Thanks for your effort.
Ralf
Design a report with multiple pages
Hello Aleksey
Thank you very much for your help, the sample report that you send me has solved the problem.
Ralf
Thank you very much for your help, the sample report that you send me has solved the problem.
Ralf