Add Rendered Page

Stimulsoft Reports.NET discussion
Post Reply
pegah90
Posts: 1
Joined: Sun Dec 13, 2015 5:53 am

Add Rendered Page

Post by pegah90 »

Hi
I Want to print multiple report at once
What I did

Code: Select all

StiReport reportAll = new StiReport();
            reportAll.Render();
            reportAll.RenderedPages.Clear();
foreach (var id in selectedIds)
{
StiReport stiReport1 = new StiReport();
//Code that Make Report
stiReport1.Render(false);
 foreach (StiPage page in stiReport1.RenderedPages)
                {
                    reportAll.RenderedPages.Add(page);
                }
}
reportAll.Print();
that is work.But the problem is the Design of Report is desturbing in some systems but When It's Not using multiple report it doesn't Happen.
It means the design of report is ok the problem is in above Code.
Can you Help me ?
HighAley
Posts: 8430
Joined: Wed Jun 08, 2011 7:40 am
Location: Stimulsoft Office

Re: Add Rendered Page

Post by HighAley »

Hello.

Could you describe this issue more detailed with samples and screen-shot where we could see what is wrong.

Thank you.
Post Reply