Click here to Skip to main content
15,885,914 members
Please Sign up or sign in to vote.
3.50/5 (2 votes)
Hi Friends,

I have created a RDLC report form in windows application using c sharp codings , I can able to display single Tables in rdblc but i need to display multiple tables(Multiple Tables will be created dynamically in Database), i.e , I need to bind the whole DataSet in RDLC itslef. :)

For Ex:


C#
using (InfoReportViewer tbreport = new InfoReportViewer(ds.Tables[0], "CaseReport.rdlc"))
                    {

                        tbreport.AddReportDatasource(ds.Tables[0], "DataSet");
                        
                        tbreport.ShowDialog();
                    }



The above coding is working properly but i need to use like the below coding ,

C#
using (InfoReportViewer tbreport = new InfoReportViewer(ds.Tables[0], "CaseReport.rdlc"))
                    {

                        tbreport.AddReportDatasource(ds, "DataSet");
                       
                        tbreport.ShowDialog();
                    }


So can any one suggest me to solve this issue ? .

Thanks in Advance .
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900