Problems with Subreports
Re: Problems with Subreports
Hello.
We have made an improvement.
Please, check our next prerelease build that will be available on Friday.
Thank you.
We have made an improvement.
Please, check our next prerelease build that will be available on Friday.
Thank you.
Re: Problems with Subreports
Hello,
yesterday, you have released v2016.1.20 and I found the following change in the Release Notes:
But the issue still appears 
Regards,
Matthias
yesterday, you have released v2016.1.20 and I found the following change in the Release Notes:
Sounds like a change for my problemEngine V2. The SubReport sizeis now correctly calculated if it is located directly on the page.


Regards,
Matthias
Re: Problems with Subreports
Hello,
We checked and found out that for technical reasons, the change was not included in the build.
Tomorrow we remake the build.
Please download it again tomorrow.
Thank you.
We checked and found out that for technical reasons, the change was not included in the build.
Tomorrow we remake the build.
Please download it again tomorrow.
Thank you.
Re: Problems with Subreports
Hello,
I have tested the problem with Rel. 2016.1.21 and it works very well
Thank you very much!
Maybe, you can help me on a similar problem? Now, I have to add the subreports on a databand with setting NewPageBefor=TRUE. But in this case, all subreport pages are printed in direct succession. I would expect a new page for each subreport page and a new page for each databand record
Is there a way to achieve this behaviour?
Please see attachement for example.
Many thanks & Regards,
Matthias
I have tested the problem with Rel. 2016.1.21 and it works very well

Maybe, you can help me on a similar problem? Now, I have to add the subreports on a databand with setting NewPageBefor=TRUE. But in this case, all subreport pages are printed in direct succession. I would expect a new page for each subreport page and a new page for each databand record

Is there a way to achieve this behaviour?
Please see attachement for example.
Many thanks & Regards,
Matthias
- Attachments
-
- ReportWithSubreport.mrt
- (4.17 KiB) Downloaded 312 times
-
- Module.mrt
- (5.49 KiB) Downloaded 310 times
Re: Problems with Subreports
Hello,
In this case, you can set the following option:
And the following code in the SubReport for the paging emulatation:
Thank you.
In this case, you can set the following option:
Code: Select all
Stimulsoft.Report.StiOptions.Engine.RenderExternalSubReportsWithHelpOfUnlimitedHeightPages = true;
Code: Select all
if (Line > 1 && (Line - 1) % 10 == 0) Engine.NewPage();
- Attachments
-
- ReportWithSubreport.mrt
- (4.24 KiB) Downloaded 291 times
-
- Module.mrt
- (5.58 KiB) Downloaded 227 times
Re: Problems with Subreports
Hello,
thanks for your respond.
I have to implement the paging in each subreport by myself? That's not very funny...
The attached sample was just a simplified sample to reproduce the issue. In real cases, our subreports are lot more complex and it would be really difficult to implement the paging. The great paging was a main reason for us, to choose your reporting tool!
I would be very grateful, if you can fix this issue.
Many thanks & Regards,
Matthias
thanks for your respond.
I have to implement the paging in each subreport by myself? That's not very funny...

The attached sample was just a simplified sample to reproduce the issue. In real cases, our subreports are lot more complex and it would be really difficult to implement the paging. The great paging was a main reason for us, to choose your reporting tool!
I would be very grateful, if you can fix this issue.
Many thanks & Regards,
Matthias
Re: Problems with Subreports
Hello,
The sub-report is rendered on a page with unlimited height because it's impossible to know the end size of the sub-report component.
In this case, you need to implement the paging with additional code or implement your task on the main page without the SubReport.
Thank you.
The sub-report is rendered on a page with unlimited height because it's impossible to know the end size of the sub-report component.
In this case, you need to implement the paging with additional code or implement your task on the main page without the SubReport.
Thank you.