Page 2 of 2
DataSource
Posted: Fri May 25, 2007 1:21 am
by satisht
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.
DataSource
Posted: Fri May 25, 2007 11:06 pm
by satisht
Please give me the another way to register both tables of different data sources?
DataSource
Posted: Sat May 26, 2007 2:31 am
by Vital
You can use following code:
Code: Select all
Report.RegData("NewDataSet", dataSet)
Report.RegData("NewDataSet2", dataSet)
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.
DataSource
Posted: Sat May 26, 2007 5:21 am
by satisht
How to change the name of datasource?
DataSource
Posted: Sat May 26, 2007 5:52 am
by Brendan
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
DataSource
Posted: Tue May 29, 2007 11:51 pm
by satisht
Thank You..