reportviewer

Report Data Disappears on Postback

I currently have a reporting services project that is displayed as part of an ASP.NET application. I have one report that has 2 datetime parameters. When I type in the textbox some sort of date, nothing appears to happen, but if I click on the little calendar icon and select a date, the page will then post back, and the data that used ...

Set reportviwer's parameter in an application.

How do we set the parameters of .Net's reportviewer? ...

Microsoft Report Viewer Control not displaying report

I have built a simple report and run it successfully in test winform apps but when I try to run the same report in my production winforms application, the report just doesn't show up in the viewer. I look at the ReportViewer control after InitializeComponent and everything looks fine. Are there debugging techniques or gotcha's that mig...

Reportviewer variable

I am using ReportViewer to chart a dataset, and I wish to show a trendline over time. This requires me to use the value for the first day in calculating the trandline for each subsequent day - is it possible to refer to previous values in the chart, or to set variables when the chart is run with the starting value? I don't wish to us...

Image field on ReportViewer

Hi Guys, Anybody tried to display image field (image/byte array) data type on reportviewer. Regards, Peter ...

ReportViewer "Missing URL parameter: Name"

In a web application I'm working on the ReportViewer keeps giving me a error "Missing URL parameter: Name". I have found the cause but not a solution. The url that is causing the exception from the report viewer Reserved.ReportViewerWebControl.axd?ReportSession=3bkunv2wte3wmnabkquyr1y0&ControlID=1e2b5870e07b46abac7fd32a9e0e4b9d&Culture...

ASP.Net ReportViewer causes flickering in Firefox.

In the HTML generated by the ReportViewer there is the following line of code (I've tried ot make it more readable by removing the superfluous information) setTimeout("frames['ReportViewer1TouchSession0'].location.replace('/Reserved.ReportViewerWebControl.axd?...&TimerMethod=KeepAliveMethodReportViewer1TouchSession0...", 0); function K...

How would I create this report in reporting services for the report viewer control?

I have this dataset created in Visual Studio 2008 in my project. I have already filled each table with the data that I need. There will be multiple tickets and each child table will have either 0 or more items relating to the ticket table. There are no relationships established as part of the dataset (yet). I also have this report create...

Highlight some text in a Jasper Reports viewer

I want to highlight some parts of the reports i'm generating for display. I don't want to change the report definition. I want to highlight the output at runtime. But the JRViewer i'm using doesn't really have much of an API. And manipulating the JasperPrint object with setForecolor/setBackcolor before displaying it, didn't seem to chan...

ReportViewer: Combine Multiple Reports into one report

I have a report that I need to run multiple times, with different data input each time. Each report has a page header that uniquely identifies it, the actual body of data, and then a footer that contains the page count in a [x of y pages] format. Obviously I could run each report separately, but I need the page numbers to be across all...

How to develop in Visual Studio 2008 and embed Report Viewer Object for .Net 2?

Application is being developed in VS 2008. Report viewer is used and calls a report from SSRS on a SQL Server 2005 server. Error: Server Error in '/AppName' Application. Configuration Error Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error d...

Textbox on ReportViewer (RDLC) not wrapping but forcing a page break

Situation: My report uses several ReportViewer Textbox controls which grow and shrink, depending on the size of the bound text. When the text in the ReportViewer textbox control is too long to fit on the current page, a page break occurs before the textbox and it is then wholly rendered in the next page. This often results in a large e...

total pages in a report using report viewer

i want to get total number of pages in form,which is placed report viewer..(int t=int T = objReportViewer.LocalReport.GetTotalPages();)i used this code,actually report have 5 pages but got only one page ...

ReportViewer Control - Height issue

In my asp.net application, I am trying to open a particular report. I have the ReportViewer Control set with width of 100% and height of 100%. Now I expect that to mean that the report will take up the entire page. Well to my surprise, it does not. In IE7 while it takes the entire width of the page, it only takes up a small portion o...

ReportViewer Conditional Formatting

I am trying to apply conditional formatting of certain table cells in my ReportViewer control. I understand how to apply conditions by comparing data that resides in the same row, for example, the following will color a cell RED if the Cost is higher than the revenue: =IIf(Fields!Cost.Value > Fields!Revenue.Value, "Red", "Black") My ...

Load image to ReportView dinamic.

Hi, My name is Ed and i need load image from ReportView dinamic.How i can do this? I work windows forms,c# 3.0 and linq to sql, i need load image to my reports dinamic. Thanks. ...

Why does VS2005 ReportViewer adds page breaks when setting up the margins?

Hi, I'm using the report viewer control included in Visual Studio 2005 and something odd is happening; when I set the margins on the report and I run the application the report viewer adds a page break after each content page, so if I have 2 content pages I end up having 4 pages of which 2 of them are blank pages. If I set the margins ...

Asp.net Report Viewer SRS Setup

Hi all, I currently have a srs report which has a url that looks like http://localhost/Report_SqlExpress/Pages/Report.aspx?ItemPath=/personnel_report I've tried using the Report viewer control to display this report by doing the following <rsweb:ReportViewer ID="ReportViewer1" runat="server" ProcessingMode="Remote" ...

Exporting ReportViewer to Excel - Line width variation

I am creating reports using the Microsoft ReportViewer control. I am encountering some formatting issues when exporting the reports into Excel. The problem is that I am specifying a line width of 1pt in ReportViewer, which is the smallest line possible (or is it?). When the export is done, the line widths in Excel are all thick bor...

Convert reportviewer data to xml.

How can we convert data displayed in a reportviewer to an xml file? ...