Question

I have a SSRS solution with a report and I'd like to integrate that report with an C# app that is in another solution. Could anybody you tell me how can I do that?, I'm using visual studio 2010.

Was it helpful?

Solution

The ReportViewer component allows you to add a report to a winform application, or you can always launch a web browser out of your application to the report server, passing parameters as needed.

OTHER TIPS

I did it, I copy the xml (.rdl file) from my SQL Server Data Tools pasted it in my .rdlc faile created in my C# app, after that I updated this line

<Report xmlns:rd="http://schemas.microsoft.com/SQLServer/reporting/reportdesigner" xmlns="http://schemas.microsoft.com/sqlserver/reporting/2008/01/reportdefinition">

from 2010 to 2008 and after that change my dataset name.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top