我想显示未连接到任何数据库的数据表记录 在刺激报告中。我尝试这行代码,但报告页面是空的 我该怎么办?
factorDT.TableName = "factorDT";
factorDataSet.Tables.Add("factorDT");
factorDT.Columns.Add("PCode", typeof(int));
factorDT.Columns.Add("Title", typeof(string));
factorDT.Columns.Add("UnitPrice", typeof(int));
factorDT.Columns.Add("Count", typeof(int));
factorDT.Columns.Add("TotPrice", typeof(int));
private void simpleButton1_Click(object sender, EventArgs e)
{
stiReport1.RegData("factorDataSet",factorDataSet);
stiReport1.Dictionary.Synchronize();
stiReport1.Compile();
stiReport1.Show(true);
}
答案 0 :(得分:0)
我通过将数据表保存到XML文件并将其加载到我的StiReport
来解决此问题