report.RegData("ZenCaiDataTable", ZengCaidt);
report.RegData("CaiJinOrFeiCaiJinGroup", JSDCaiJindt);
report.CacheAllData = true;
report.ReportCacheMode = StiReportCacheMode.On;
report.Render(false);
report.Print(false, printerSettings);
report.Dispose();
When I use these code,my report printed null,but when I delete "report.RegData("ZenCaiDataTable", ZengCaidt);",report can print correctly,Why?
RegData can't use?
RegData can't use?
Hi
It is very difficult to answer on this question without seeing of your report. If possible, please send it to us for analysis to support[at]stimulsoft.com with a link on this topic.
Thank you.
It is very difficult to answer on this question without seeing of your report. If possible, please send it to us for analysis to support[at]stimulsoft.com with a link on this topic.
Thank you.
RegData can't use?
Hello,
Please use instead:
following code:
instead:
following code:
Thank you.
Please use instead:
Code: Select all
> report.RegData("ZenCaiDataTable", ZengCaidt);
Code: Select all
> report.RegData("ZenCaiData", ZengCaidt);
Code: Select all
> report.RegData("CaiJinOrFeiCaiJinGroup", JSDCaiJindt);
Code: Select all
> report.RegData("CanHouJSDanData", JSDCaiJindt);