Alexander R. answered 02/27/22
Software Engineer by trade looking to share my knowledge
Hi,
For RDL to RDLC conversion you might find this Mircosoft documentation useful: https://docs.microsoft.com/en-us/previous-versions/visualstudio/visual-studio-2008/ms252109(v=vs.90)?redirectedfrom=MSDN#rdl-to-rdlc-conversion
"
When converting a .rdl file to .rdlc format, you must manually replace the data source and query information in the report definition with data constructs provided in your application.
- Rename the .rdl file to use the .rdlc file extension.
- In Visual Studio 2008, open the solution or project that will contain the report.
- Create or add the dataset that defines the data you want to use to your projector solution. For more information, see Creating Data Sources for a Report.
- On the Project menu, click Add Existing Item and then select the .rdlc file that you created in the first step.
- In the project, open the form or Web page that will contain the report.
- From the Toolbox, in the Data group, drag a ReportViewer control onto the form or Web page.
- In the ReportViewer Tasks smart tags panel, in Choose Reports, select the .rdlc file to use with the control.
- In the ReportViewer Tasks smart tags panel, in Choose Data Sources, select the dataset you want to use. The dataset object, binding source object, and table object will appear at the bottom of the workspace. For more information about updating data source references, see Updating and Rebinding Data Source References (Visual Studio Report Designer).
- Save all files, and then build or deploy the project to verify that the report contains the data you expect.
"