如何在C#中为每个StimulSoft记录创建页面?

时间:2018-04-14 11:50:55

标签: c# report stimulsoft

我想在数据网格视图中为每个记录数据创建页面?这是我的代码:

foreach (DataGridViewRow tableRow in dataTable.Rows)
{
  string ShomareVahed = tableRow.Cells[0].Value.ToString();
  StiReport report = new StiReport();
  report.Load("Report.mrt");
  report.Compile();
  report["ShomareVahed"] = ShomareVahed;
  report.Show();
}

但它显示每个记录的报告对话框,我该怎么做?

0 个答案:

没有答案