Painting issue at the time of preparing the report.

Stimulsoft Reports.NET discussion
Post Reply
satisht
Posts: 150
Joined: Mon Apr 09, 2007 12:28 am
Location: Pune

Painting issue at the time of preparing the report.

Post by satisht »

There is small painting issue of progressbar at the time of generatig report. I can send you a screenshot.
Edward
Posts: 2913
Joined: Fri Jun 09, 2006 4:02 am

Painting issue at the time of preparing the report.

Post by Edward »

Ok, please send it to support[at]stimulsoft.com

Thank you.
satisht
Posts: 150
Joined: Mon Apr 09, 2007 12:28 am
Location: Pune

Painting issue at the time of preparing the report.

Post by satisht »

I have send the screenshot of painting problem.
Edward
Posts: 2913
Joined: Fri Jun 09, 2006 4:02 am

Painting issue at the time of preparing the report.

Post by Edward »

Thank you for the screenshot. Unfortunately we haven't reproduced this error. Please send the test solution if possible.

There is another way to avoid this error: do not use our report rendering window at all. Please use the following code for showing progress manually:

Code: Select all

private void OnRendering(object sender, EventArgs e)
{

lbStatus.Text = ((StiReport)sender).StatusString;

Application.DoEvents();

}

report.Compile();
report.CompiledReport.Rendering += new EventHandler(OnRendering);
report.Render(false);
Thank you.
Post Reply