【发布时间】:2023-01-31 17:11:05
【问题描述】:
我如何将 3 个数据表发送到 winforms c# 中的 StimulSoft 报告。 我在 StimulSoft 报告中添加了数据集和 3 个数据表。 我在应用程序中输入:
StiReport report = new StiReport();
string fileReport = "Report\\ReportTest.mrt";
string myfile = System.AppDomain.CurrentDomain.BaseDirectory + fileReport;
report.Load(myfile);
report.Compile();
report.RegData(dtDelay);
report.RegData(dtDesc);
report.RegData(dtPart);
report.Show();
【问题讨论】:
标签: c# winforms datatable report stimulsoft