4,818
社区成员
发帖
与我相关
我的任务
分享
private void button1_Click(object sender, EventArgs e)
{
DataTable dt = TuoCheBLL.GetTuoChe(dTPicker1.Value,dTPicker2.Value);
dataGridView1.DataSource = dt;
this.TuoCheReportBindingSource.DataSource = dt;
this.rptViewer.RefreshReport();
}
private void Form1_Load(object sender, EventArgs e)
{
// Bind the Product collection to the DataSource.
this.ProductBindingSource.DataSource = m_merchant.GetProducts();
this.reportViewer1.RefreshReport();
}
)
this.TuoCheReportBindingSource.LocalReport.DataSources.Add(dt);