Home > OS >  RDLC report with no database in winforms
RDLC report with no database in winforms

Time:09-24

Hi i want to create a rdlc report with a table in it such that the table have two columns. the first columns is hard coded during design and describe label of values in next column. The next column should be filled by values coming at run time. enter image description here

Then add these line before rending the report:

ReportDataSource rdl = new ReportDataSource("DataSet1", new List<string>());
ReportViewer1.LocalReport.DataSources.Add(rdl);
  • Related