I've created a report which is included an SQL data source.
Then, two other data sources created from "Data from other data source" which is derived from the first data source.
I use below code to feed my report via my application :
Code: Select all
With ReportDocumnet
.Load(<MyReportPath>)
.Compile()
.Dictionary.Clear()
.RegData(<myDataTable>)
.Dictionary.Synchronize()
.Render()
With