Thanks for the reply Ben. I've tried setting each data table from the Datasource to my Business Object's data table byCtype(DexExReport.DataSource, DexExDataSet).Tables(0) = My.BusinessObject.CurrentView.toTable
But these data tables are read only. So I try to reference the tables by
Dim loDT1 as DataTable = Ctype(DevExReport.DataSource, DevExDataSet).Tables(0)
loDT1 = My.BusinessObject.CurrentView.totable.Copy
And this gets data into the DataTable on the Report, but it still goes out and get data from SQL Server. If I remove its Select Statement from the TableAdapter in the DataSet, it bombs out completely.
I also tried removing the DataTables, relations first, then adding my BO Tables to it, and the relation back in, but I think I was way over my head and that point and when it didn't work, I gave up.
Thanks,
Robin Giltner