Page 1 of 1

Painting issue at the time of preparing the report.

Posted: Mon Oct 15, 2007 11:30 pm
by satisht
There is small painting issue of progressbar at the time of generatig report. I can send you a screenshot.

Painting issue at the time of preparing the report.

Posted: Tue Oct 16, 2007 1:36 am
by Edward
Ok, please send it to support[at]stimulsoft.com

Thank you.

Painting issue at the time of preparing the report.

Posted: Wed Oct 17, 2007 12:04 am
by satisht
I have send the screenshot of painting problem.

Painting issue at the time of preparing the report.

Posted: Tue Oct 23, 2007 8:25 am
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.