RDLC ReportViewer上的表使用数据库的第一行值填充了所有行值

时间:2018-10-28 08:37:31

标签: c#

我有两个Data Sets名称CustomerInstallmentPaymentHistory两个Data Sources CustomerInsttDataSetinsttDataGridDataReportviewertext box获取输入。 ReportViewer上的Table填充了Database,但它显示了first的{​​{1}}值row填充了

我的all rows

code

RDLC ReportViewer repeat first row values for all rows

请修改我的代码,以使private void txtSID_KeyDown(object sender, KeyEventArgs e) { if (e.KeyCode == Keys.Enter) { string sid = ""; int isid = 0; id = txtSID.Text.ToString(); if (int.TryParse(sid, out isid)) ; this.CustomerTableAdapter.Fill(this.CustomerInsttDataSet.Customer, isid); this.installmentPaymentHistoryTableAdapter.Fill(this.insttDataGridData.InstallmentPaymentHistory, isid); this.reportViewer1.RefreshReport(); } } 上的table弹出全部ReportViewer,而不是仅重复database rows

0 个答案:

没有答案