Hi,
I built a report that currently pulls from one table and uses the following code to populate it.
VB Code:
Dim cr As New ReportDocument cr.Load(strAppPath & "\Reports\SchDaysPerDept.rpt") cr.SetDataSource(ds.Tables("tblVacationTaken")) CrystalReportViewer1.ReportSource = cr
How can I populate this if the data is from two tables?
Thanks




Reply With Quote