我想在数据网格视图中为每个记录数据创建页面?这是我的代码:
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();
}
但它显示每个记录的报告对话框,我该怎么做?