DataSource
DataSource
Hi i have tried to register the both tables but it was not worked , I have tried to register both datasouces by
Report.RegData("NewDataSet", dataSet)
Report.RegData("Data from DataSet,DatTables", Table2)
But still 2'nd dataseet is not get registered.
Report.RegData("NewDataSet", dataSet)
Report.RegData("Data from DataSet,DatTables", Table2)
But still 2'nd dataseet is not get registered.
DataSource
Please give me the another way to register both tables of different data sources?
DataSource
You can use following code:
For also to receive copy of datasource you can create in report dictionary two fully equaled datasource. You need change only Name of datasource.
Thank you.
Code: Select all
Report.RegData("NewDataSet", dataSet)
Report.RegData("NewDataSet2", dataSet)
Thank you.
DataSource
How to change the name of datasource?
DataSource
To change the name of your datasource,
Right Click on your Datasource in the Dictionary Window and Selected Edit
Change the "Name" field to change the datasource name
Right Click on your Datasource in the Dictionary Window and Selected Edit
Change the "Name" field to change the datasource name
DataSource
Thank You..