Reputation: 7291
I have a strongly-typed dataset with 3 tables. I want to show all of these 3 tables data on a crystal report. How to set crystal report's datasource to this dataset's tables?
Please please help
Regards skpaul
Upvotes: 0
Views: 677
Reputation: 8780
You can only have one datasource. If the tables are related then you'll need to join them together, or if they are not related then you'll have to use subreports.
Is this information coming from a database? If it is, I would suggest not using datasets at all and just setting the report to look to the database itself for data. That will save you a lot of coding and be much easier to maintain. If that's a possibility for you but you don't know how let me know and I'll provide more info.
Upvotes: 1