Reference to Stimulsoft.Report.Win.dll is missing
Posted: Thu Jun 11, 2009 12:43 am
Hi All,
We've taken licence of "Stimulsoft.Reports.Web".
I am able to generate report and show in a pdf file using following code
The above code is working fine in web application.
I am using windows services for some events on server. I want to generate report using windows service also.
So I write the above code there... but it throws error that "Reference to Stimulsoft.Report.Win.dll is missing".
How I can get this dll? or what is the work around for this problem?
We've taken licence of "Stimulsoft.Reports.Web".
I am able to generate report and show in a pdf file using following code
Code: Select all
BusinessLib.UpdateDetail details= BusinessLib.UpdateDetail.GetReportDetail("first");
report.RegData("MySource", details);
report.Dictionary.DataSources.Clear();
report.Dictionary.Synchronize();
report.Dictionary.Connect();
report.Render();
StiReportResponse.ResponseAsPdf(this.Page, report, true);
I am using windows services for some events on server. I want to generate report using windows service also.
So I write the above code there... but it throws error that "Reference to Stimulsoft.Report.Win.dll is missing".
How I can get this dll? or what is the work around for this problem?