reportviewer

Does the Microsoft Report Viewer Redistributable 2008 really require .NET Framework version 3.5?

I'm packaging up a .NET 2.0 based web app for deployment through a Windows Installer based package. Our app uses Report Viewer 2008 and I'm including the Microsoft Report Viewer Redistributable 2008 installer. When I check the download page for Report Viewer 2008, it lists .NET 3.5 as a requirement. Is having .Net 3.5 installed real...

SQL Reporting Services viewer for webpage - can you move the View Report button?

Using the viewer control for display of SQL Reporting Services reports on web page (Microsoft.ReportViewer.WebForms), can you move the View Report button? It defaults to the very right side of the report, which means you have to scroll all the way across before the button is visible. Not a problem for reports that fit the window width, b...

How can I render a PNG image (as a memory stream) onto a .NET ReportViewer report surface

I have a dynamically created image that I am saving to a stream so that I can display it on a ReportViewer surface. Setup: Windows Client application (not WebForms) Report datasource is an object datasource, with a dynamically generated stream as a property (CustomImage) Report.EnableExternalImages = true Image.Source = Database Ima...

How do you view SQL Server 2005 Reporting Services reports from ReportViewer Control in DMZ

I want to be able to view a SQL Server 2005 Reporting Services report from an ASP.NET application in a DMZ through a ReportViewer control. The SQLand SSRS server are behind the firewall. ...

SSRS 2005 Matrix and border styles when exporting to XLS

The Matrix in SSRS (SQL Server Reporting Services 2005) seems to have issues with certain the border styles when exporting to XLS (but not PDF or web view; maybe other formats, not sure?). For example: Create a matrix and set the Matrix border style to Black Solid 1px, but all 4 of the cells to have a border style of Black None 1px. Whe...

ReportViewer displaying black background in Print Layout mode

In my ReportViewer control, when I click on Print Layout, the background turns black on the report. This must be a bug. Is there a workaround? ...

SSRS - ReportViewer LocalReport Set SubReport parameter value

How can you programmatically set the parameters for a subreport? For the top-level report, you can do the following: reportViewer.LocalReport.SetParameters ( new Microsoft.Reporting.WebForms.ReportParameter[] { new Microsoft.Reporting.WebForms.ReportParameter("ParameterA", "Test"), new Microsoft.Reporting.WebFo...

Web designer for VS.NET ReportViewer

Is there any designer for rdl files (visual studio .net reports) that can be used on a web browser? ...

ReportViewer - LocalReport - Merge reports?

I'm using ReportViewer WinForms, and since it is no easy way to create an coversheet, then I wonder, is it possible to render two reports and have them concatenated?, so they appear as one report? If I was to print only, then I could execute two reports after each other, but since the user want to see the report before printing (you kno...

ReportViewer - modify toolbar?

Do anyone have good ideas of how to modify the toolbar for the WinForms version of the ReportViewer Toolbar? That is, I want to remove some buttons and varius, but it looks like the solution is to create a brand new toolbar instead of modifying the one that is there. Like, I had to remove export to excel, and did it this way: // Disa...

Is there a way from preventing other ReportViewers on the same webpage from refreshing?

Currently I am working on a web page that has six ReportViewer controls that are using remote processing and that allow for drill-down. When a user clicks on one control the entire page refreshes and the other five reports all refresh as well. Users are currently requesting that the refreshing of the other controls be removed in favor of...

Should I stick with the ReportViewer control or buy a third party tool?

Hi, we need reports in our web application and there is the free ReportViewer Control from microsoft (normally used, to display reports from the reporting services). I like the fact, that the Report Format (.RDL-Format) from the ReportViewer is a documented XML-Format. But the functionality is somewhat limited, when the ReportViewer is ...

Best way to dynamically create RDLC xml as input to VS2005 Report Viewer?

What is the best way to dynamically create RDLC xml as input to VS2005 Report Viewer? I would like to autosize columns based on the data sizes. I would also like to programmatically control what columns are displayed. ...

ReportViewer Division by zero

I have some formulas in my reports, and to prevent divsion by zero I do like this in the expression field: =IIF(Fields!F1.Value <> 0, Fields!F2.Value/Fields!F1.Value, 0) This normally works fine, but when both F1 and F2 are zero, I get "#Error" in the report, and I get this warning: "The Value expression for the textbox ‘textbox196’ co...

ReportViewer Control and Ajax UpdatePanel

Did anyone of you ever find a way of getting the Microsoft Report Viewer Control (Web) to work from within an Ajax UpdatePanel? ...

View MS Access Report in .net ReportViewer control

Is it possible to view an MS Access report in the .Net ReportViewer control? ...

Microsoft ReportViewer: Session Expired Errors

...

ReportViewer control won't allow Exporting

Hi, 1) I have a ReportViewer control on a page that's linked to a ServerReport (I'm using ASP.NET 2.0). The report displays fine, but the 'Export' link is present but disabled and the 'Select a format' drop down list (that's normally visible when you view the report in Reporting Services) isn't there. Any ideas? The ShowExportControls p...

MS Reportviewer - Save Expanded/Collapsed Nodes in ViewState?

I have a report that's being populated from an ObjectDataSource. The report includes expandable/collapsable nodes per user. I'm allowing the viewer to filter the report by setting the FilterExpression on the datasource, then calling ReportViewer1.LocalReport.Refresh(). This is done during PostBack. This filters the results, but the...

Please help me use reportviewer with business objects and wcf

We have a small in house project that requires reporting. I'm trying to use reportviewer as it seems like it will do exactly as we require and didn't want to get bogged down with the complexity of crystal reports if I could help it. I am trying to use a business object that I am passing to the report.rdlc. The problem is that the prope...