我有两个Data Sets
名称Customer
和InstallmentPaymentHistory
和两个
Data Sources
CustomerInsttDataSet
和insttDataGridData
。 Reportviewer
从text 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