Click here to Skip to main content
15,909,091 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How to generate SSRS reports in winforms with C#.
Posted

1 solution

Hello,

You need to use RDLC reports and the Winform Report Viewer.

See here:
http://msdn.microsoft.com/en-us/library/aa337089.aspx[^]

Basically once you have created your RDLC report and assign it to the report viewer and load a data source.

C#
reportViewer.LocalReport.DataSources.Add(reportDataSource);
reportViewer.LocalReport.ReportPath = path;
reportViewer.RefreshReport();



Valery.
 
Share this answer
 

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