Cancel the report rendering (e.g. on keystroke)
Posted: Fri Nov 09, 2007 3:09 am
Hi,
When rendering a report with the user can cancel the rendering process in the progress dialog window.
Ist there any elegant way to provide this cancel functionality when using (for example by letting the user press the [ESC] key)?
I am unsure whether can help, but the quickTip says it should not be used and I would maybe have concerns about thread safety there, too.
Thanks in advance.
When rendering a report with
Code: Select all
Report.Render(true);
Ist there any elegant way to provide this cancel functionality when using
Code: Select all
Report.Render(false);
I am unsure whether
Code: Select all
Report.Stop = true;
Thanks in advance.