Page 1 of 1

Issue rendering report and viewing designer

Posted: Thu Aug 19, 2010 6:17 am
by metre2
I have a call to Report.Render in my code which works fine until I call Report.Render(True) to show progress.

This generates an error of:

System.Exception: Assembly 'Stimulsoft.Report.Win' is not found

I can't find this assembly within the installation folder so that it can be repackaged for distribution.

This also occurs when calling the designer for the generated report.

Please advise.

Issue rendering report and viewing designer

Posted: Thu Aug 19, 2010 6:50 am
by Ivan
Hello,

Please use the following commands:

Code: Select all

report.RenderWithWpf(true);
report.ShowWithWpf();
report.PrintWithWpf();
report.DesignWithWpf();
Thank you.