Painting issue at the time of preparing the report.
Painting issue at the time of preparing the report.
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.
Ok, please send it to support[at]stimulsoft.com
Thank you.
Thank you.
Painting issue at the time of preparing the report.
I have send the screenshot of painting problem.
Painting issue at the time of preparing the report.
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:
Thank you.
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);