Hi
Is it possible to use an arraylist as a datasource for the report ?
Thanks !
arraylist as datasource
-
- Posts: 70
- Joined: Wed Feb 24, 2010 11:08 am
- Location: India
arraylist as datasource
Hello,
You can use following code to register business object:
also in latest version of our software you can use following code:
Thank you.
You can use following code to register business object:
Code: Select all
report.RegData("MyData", list);
Code: Select all
report.RegBusinessObject("MyData", list);
-
- Posts: 70
- Joined: Wed Feb 24, 2010 11:08 am
- Location: India
arraylist as datasource
Thanks a lot for your reply sir.
How to make it visible in designer ?
Thanks once again !
Regards!
How to make it visible in designer ?
Thanks once again !
Regards!
arraylist as datasource
Hello,
Please try to use code:
Thank you.
Please try to use code:
Code: Select all
report.RegData("MyData", list);
report.Dictionary.Synchronize();
report.Design();