I`m trying to display record in a Report. Data is in the Dataset. but it is not binind to them. When forms load it shows it report layout. But when i click on the button it show
if you add another table to the xsd form after adding the report to the report viewer you might get this error.
now go to the Load event of the form (that includes the report viewer and add the Fill for new dataset.
private void rptForm_Load(object sender, EventArgs e) {
this.vwrpt_TableAdapter1.Fill(this.DataSet1.vwDataset);
}