Table of contents and page numbering
Re: Table of contents and page numbering
Hello,
Could you explain your issue in more details?
As a way, you can implement your own event in which merge the necessary pages and page counts in the additional report and then print it.
Thank you.
Could you explain your issue in more details?
As a way, you can implement your own event in which merge the necessary pages and page counts in the additional report and then print it.
Thank you.
Re: Table of contents and page numbering
We have final report (whole report) that is made from different report file .mrt.
We need to have this dinamically creation because of client that choose what elements he wants.
For example, our code is like this below:
Dim reportAss = New StiReport
Dim report1 = New StiReport
Dim report2 = New StiReport
...
'Create report1 with data
'Create report2 with data
...
reportAss.SubReports.Add(report1)
reportAss.SubReports.Add(report2)
Is it now possibile (with latest version of your product) to insert the number of pages and include table of contents of whole report?
Many thanks
Luca
We need to have this dinamically creation because of client that choose what elements he wants.
For example, our code is like this below:
Dim reportAss = New StiReport
Dim report1 = New StiReport
Dim report2 = New StiReport
...
'Create report1 with data
'Create report2 with data
...
reportAss.SubReports.Add(report1)
reportAss.SubReports.Add(report2)
Is it now possibile (with latest version of your product) to insert the number of pages and include table of contents of whole report?
Many thanks
Luca
Re: Table of contents and page numbering
Hello,
As a way, you can implement your own event in which merge the necessary pages and page counts in the additional report and then show it. Also, in this case, you should manually calculate page counts for the TOC.
Thank you.
As a way, you can implement your own event in which merge the necessary pages and page counts in the additional report and then show it. Also, in this case, you should manually calculate page counts for the TOC.
Thank you.
Re: Table of contents and page numbering
Ok, thanks.
Can I have more details? Have you an example?
Thank you
Luca
Can I have more details? Have you an example?
Thank you
Luca
Re: Table of contents and page numbering
Hello,
You can use the Double Pass. You can merge the necessary pages, then in the first pass save page positions (page numbers) for each group, pages (as you needed), and in the second pass show these values in the table of contents.
Thank you.
You can use the Double Pass. You can merge the necessary pages, then in the first pass save page positions (page numbers) for each group, pages (as you needed), and in the second pass show these values in the table of contents.
Thank you.
Re: Table of contents and page numbering
Aleksey,
I understand what you mean ... could you please send me some examples?
Thanks in advance
Luca
I understand what you mean ... could you please send me some examples?
Thanks in advance
Luca
Re: Table of contents and page numbering
Hello,
Please check the sample in the attachment.
Thank you.
Please check the sample in the attachment.
Thank you.
- Attachments
-
- ReportSample.mrt
- (29.77 KiB) Downloaded 304 times