|
Is it possible to set the Data Source of a CR to multiple DataTables? I am trying to generate a report based upon information a user inputs on a form. So I capture the values and build typed DataTables. However, if I try to set the DS to more than one of the tables, nothing is displayed. If I just set the DS to a single DT, everything is fine, but I have a situation where I need to have multiple tables. Example: This works: CrystalReport report = new CrystalReport(); report.SetDataSource(ds.Tables["dtOne"]); This doesn't: CrystalReport report = new CrystalReport(); report.SetDataSource(ds.Tables["dtOne"]); report.SetDataSource(ds.Tables["dtTwo"]) |