Hi there,
i have another problem. When i load a report and call
report.Design();
everything works fine. Even if i call
report.Render(true);
afterwards. But if i only call report.Render(true) without calling report.Design() prior to it, i get an exception that tells me that the datasources are not available. What is going wrong? Does the designer initiate something i should do before calling the render-method?
i place my data in the report using report.RegData("BusinessData",data) and everything works fine within the designer.
rendering says that there is no datasource
rendering says that there is no datasource
Hello,
Please try following code:
Thank you.
Please try following code:
Code: Select all
report.Dictionary.Synchronize();
report.Render(true);
rendering says that there is no datasource
Hi Vital,
this works perfectly. Thank you :biggrin:
this works perfectly. Thank you :biggrin: