Hello friends I want to display SSRS report in my local Window form. IN report viewer i don't want to display it from URL. I want to show reports without deplyoing it.
Can anyone give me idea for that?
Hello friends I want to display SSRS report in my local Window form. IN report viewer i don't want to display it from URL. I want to show reports without deplyoing it.
Can anyone give me idea for that?
You will need to configure your Report Viewer control to use Local Processing. Be aware that this does change the behavior of the control, as it removes the need for a Report Server. See this page for tips on getting started, and some of the pitfalls to watch out for:
I do it after a longtime.
this way i am calling remote report to local machine and use it on windows form as on web.
reportViewer1.ProcessingMode = Microsoft.Reporting.WinForms.ProcessingMode.Remote;
reportViewer1.ServerReport.ReportServerUrl = new Uri(textBox1.Text);
reportViewer1.ServerReport.ReportPath = textBox2.Text;
reportViewer1.RefreshReport();