Microsoft Report Viewer control enables applications that run on the .NET Framework to display reports designed using Microsoft reporting technology.

learn more… | top users | synonyms (1)

0
votes
0answers
11 views

How to count rows currently displayed in reportviewer

I'm trying to get the number of rows currently displayed on the page in reportviewer so that I can use it on the footer of the current page. I've found a function that would count the rows, but it ...
0
votes
0answers
12 views

Report SetParameters do not work

Here is my code: ReportParameter reportStartDate = new ReportParameter(); reportStartDate.Name = "startDate"; reportStartDate.Values.Add("2013-05-12"); ReportParameter reportStopDate = new ...
0
votes
0answers
9 views

Reportviewer Export PDF FitToPage

I created a report using ReportViewer to export my data to a PDF using the following code: Private Sub CreatePdf() Dim warnings As Warning() = Nothing Dim streamids As String() = Nothing ...
0
votes
0answers
10 views

ASP.Net SSRS ReportViewer 502 Error - Possible Timeout?

I have an ASP.Net web page that uses the ReportViewer control to render SSRS reports. We are having an issue where reports that take longer than 30 seconds to render appear to hit some sort of ...
0
votes
0answers
20 views

Session expired exception whil using the report viewer in mvc

I have a problem with the report viewer. The session have been expired exception have occues in some report I dont know what is the real problem is. ...
0
votes
0answers
12 views

Reportviewer: Create a matrix inside a table

I am working in reportviewer 2010, Winforms. I need to create a report such that there's a matrix inside a table. How do I achieve this in reportviewer? So far, I created a table, created a ...
-1
votes
0answers
27 views

deploy a RDL file using rs.exe? [closed]

Assume that i am already having a sample.rdl file with me . i need to create ssrs report using that rdl file through programmatically or running some script files 1) Is it possible to do? based on ...
0
votes
0answers
24 views

.Net ReportViewer report header text causes extra columns when report is exported to Excel

I have an ASP.Net application which uses ReportViewer to generate RDLC reports. I have noticed that when exporting the report(s) to Excel the exporter inserts extra columns where the header text of ...
0
votes
2answers
41 views

ReportViewer control returns blank page

I'm having problems with the standard ASP.NET ReportViewer control (v11, SQL 2012, VS 2012). This was previously working at some point, connecting to a remote SSRS server, but during the development ...
0
votes
0answers
27 views

Window7 microsoft reportviewer choose printer

I have program which execute on window XP and use microsoft reportViewer, all work fine and customers succeed print documents. Where program run on Windows 7, when click on print button of control ...
-2
votes
0answers
25 views

ReportViewer for Winform

I have 2 forms in my application and in the backend i have MS access database. for each run, Form1 inserts new values in the 'temp' table of the database i.e DB_EP. Now when i click on the preview ...
0
votes
0answers
11 views

2010 Visual Studio Report Viewer - Repeat Rectangle contents each page

I have two questions in the 2010 Visual Studio Report Viewer. How can I repeat the contents of a rectangle without putting it in page header/footer or a tablix header or footer? I want it to repeat ...
1
vote
1answer
44 views

ReportViewer Multiple Report Parameters

Is it possible to include multiple report parameters in a single line? if i have like 10 parameters, i don't want to create an "add" keyword 10 times ... LocalReport.SetParameters("NewParameter1", ...
1
vote
1answer
49 views

Set DateTime parameter

As you can see on image below DateTime parameter type is supported in RDLC. I'm trying to set parameter like this but this code doesn't compile with error that there is not constructor accepting ...
0
votes
0answers
29 views

Reserved.ReportViewerWebControl.axd cookie accumulation

I have a problem with Microsoft ReportViewer. With each new generated report added one new cookie like this: ...
0
votes
1answer
93 views

Could not load file or assembly 'Microsoft.ReportViewer.WebForms, Version=11.0.0.0,

I am trying to use report viewer in asp.net and have uploaded my site, but when my page containing report viewer gets loaded it shows following error, Could not load file or assembly ...
0
votes
1answer
27 views

Reportviewer: Unable to set Interactive height to 0

I am using reportviewer 2010 Winforms In normal mode, I want the entire report to display in one page only. I read different topics and learnt setting the Interactive height property to zero might do ...
0
votes
0answers
32 views

Is ReportViewer 2012 compatible with SSRS Server 2005 for remote access?

While attempting to view a report in ReportViewer 2012 from SSRS 2005 in remote mode I am getting error: "Remote report processing requires Microsoft SQL Server 2008 Reporting Services or later." Are ...
0
votes
0answers
25 views

C# WebForm ReportViewer drillthrough management

I dynamically populate a WebForm ReportViewer control using this method: SqlDataAdapter dataAdapter = new SqlDataAdapter(cmd); DataTable dataTable = new DataTable(); dataAdapter.Fill(dataTable); ...
0
votes
1answer
55 views

the application requires that assembly microsoft.reportviewer.processingObjectModel version 11.0.0.0 be installed in the global assembly cache first

I have a small windows forms application created in Visual Studio 2012 that uses ReportViewer version 11.0.0.0. The application target framework is .NET 4.0 and its deployment method is ClickOnce On ...
0
votes
2answers
60 views

web report viewer input string

For start : I have used the ASP.NET Report Viewer in a user control. I have the following user control : (aspx) <%@ Register Assembly="Microsoft.ReportViewer.WebForms, Version=11.0.0.0, ...
1
vote
0answers
27 views

stop background processing on reportviewer cancel

I have a web page where user can select report parameters and when submit the request im opening a popup window where report is being generated with the help of report viewer control. when the report ...
0
votes
1answer
46 views

The request failed with HTTP status 401: Unauthorized

I have an ASP.NET website that uses the ReportViewer control. I'm using SQL server 2008 from reporting. The reporting services are on another machine on the local network and my asp.net web site is on ...
0
votes
1answer
58 views

writing on C# winform ReportViewer

I'm new to ReportViewer Control in C# winform, is there any way that I can add report viewer content without using datasets? Can I write directly on report viewer? for instance can I add labels to ...
1
vote
0answers
71 views

How Do I Loop Through A List Of Objects and Repeat an RDLC Report Page With Each Object?

I have a report setup with text boxes for the properties of an object to tie in with. What I'm trying to do is loop through each object in the list and repeat this page with the populated data of each ...
0
votes
1answer
35 views

Pass Parameter From Main Report To Subreport

I have an object datasource that I fill and use on my main report. I am trying to pass one of the properties from this object as a parameter to a subreport. The instructions I've read online are: ...
0
votes
0answers
42 views

Get CurrentPage of ReportViewer in Print Preview mode?

In normal mode (by default at the first time loading ReportViewer with Local Report), I can get the CurrentPage correctly which is the current page in the current view mode. But after changing to ...
4
votes
1answer
53 views

Display RTF (RichText Format) From Database to Client Side Report (MS ReportViewer)

Is this possible? I have been searching for a way to do this but I can't seem to find it anywhere. I have read somewhere that it isn't supported and then I've also read somewhere else that it is ...
0
votes
0answers
40 views

Can't control ReportViewer Scroll bars?

I don't know why Microsoft doesn't hide the VerticalScroll property of ReportViewer because it's for nothing, I can't show/hide the Vertical scrollbar via Visible property, I can't enable/disable the ...
0
votes
1answer
15 views

Adding totals at bottom of report

Totaly new to reports and also having difficulties with terminology so googling returns a lot of irrelevant info. In need to add up my columns in the table built in a .rdlc file dynamically with ...
0
votes
0answers
20 views

Report viewer generated reports are huge with graphs

I don't know if anything can be done with this, but when I generate a report using report viewer (visual studio 2010) with graphs, the generated pdf files is huge. I understand that images takes a lot ...
0
votes
1answer
209 views

Sorting and paging in SSRS report viewer in MVC3 application not working

I am integrating SSRS reports in my MVC application using an ascx control called with @Html.Partial from my “ReportViewer” view. In the ascx I have the SSRS ReportViewer control, and in the page load ...
0
votes
1answer
154 views

An error occurred during local report processing. LocalReport rdlc

I want render this report and print it on runtime without report viewer can u help me please? I try this code and I have exception An error occurred during local report processing string deviceInfo ...
0
votes
2answers
44 views

Is possible to freeze the reportviewer column's header?

I'm using ReportViewer and I'd like to know if it's possible to set the Column's Header as Fixed ? I saw this topic but the answer didn't work out the way I need. I need to freeze the column's header ...
1
vote
0answers
117 views

Deploying the Microsoft Report Viewer as a Prerequisite in VS 2012

When I try to include the Microsoft Report Viewer 2012 Runtime as a prerequisite in a ClickOnce deployment in VS2012, I receive the following warning: The 'Microsoft Report Viewer 2012 Runtime' ...
0
votes
0answers
52 views

ReportView source change

I have some problems with a ReportViewer. I have 2 different reports and I want to change reports in a reportView via a comboBox. But when I try change occurs some problem like this: Cannot find ...
0
votes
1answer
160 views

Custom export reportviewer to excel file

I want to export the report viewer to excel file after clicking a button and hide the existing export toolstrip button that available for report viewer. Below is my code for ExportFile function: ...
0
votes
1answer
34 views

ReportViewer10 - display extra lines around report and toolbar

I have created a web app that uses reportviewer 10.0.0.0 in VS2010 to render SSRS 2008 reports. The reports and toolbar do render, but they are displayed with weird layout. I see many unnecessary ...
0
votes
2answers
232 views

How to generate a print preview in a single button click in report viewer?

This is my aspx page.................. <asp:Panel ID="UpdatePanel1" runat="server" Visible="false" > <rsweb:ReportViewer ID="ReportingForPrintingReportViewer" ...
0
votes
0answers
82 views

How to close a popupwindow when i click print in microsoft report viewer?

This is my aspx page........... <asp:Panel ID="UpdatePanel1" runat="server" CssClass="panel" Visible="false" > <rsweb:ReportViewer ID="ReportingForPrintingReportViewer" ...
0
votes
0answers
44 views

Report viewer doesn't display data (display:none) for wide reports when AsyncRendering=true

I'm using report viewer 8.0.0.0. My report displays fine on report server. Fiddler captures 2 responses, one from the report server and one from localhost. The localhost response is from url like: ...
0
votes
0answers
43 views

Is Azure SQL Reporting working with Visual Studio 2012 ReportViewer?

Can somebody point me out to how to implement Azure reports in Visual Studio 2012? I have a simple WebForm with a ReportViewer. What I did: I've created a report with Report Builder 3.0 and deployed ...
1
vote
1answer
133 views

How to generate report on a button click in an asp.net website in visual studio 2010?

I am building a billing software for school. I am having problems on printing the bill. 1.Should I use report viewer or Crystal Report ?? Whichever I use I have to bind report source to one of the ...
0
votes
2answers
150 views

Dynamically removing table from rdlc report

I'm creating an SSRS report in VS2012. Under Tablix Properties I can show or hide a table using an expression which uses a boolean parameter; but this leaves a gap in the report. Is there a way I ...
0
votes
0answers
33 views

ReportingService2010 CreateSubscription with dynamic NULL and DEFAULT parametervalues

I came upon the next problem while using ReportingServices2010.asmx I am in a condition where my client wants to create his own SSRS reports and i need to create subscriptions from an aspx page to ...
0
votes
1answer
363 views

Error in using report viewer in visual studio 2012 in design mode

I'm using visual studio 2012 to develop a MVC application. I have added an ascx page to my project to put the report viewer in. When I drag and drop the ReportViewer component from toolbox in the ...
0
votes
1answer
48 views

Could not get the ReportViewer dll's in GAC

I am trying to load ReportViewer dll's into the GAC. I downloaded the ReportViewer.exe from Microsoft's download website, Unblocked it and ran it as administrator. The installation of package was ...
0
votes
1answer
512 views

How can i install ReportViewer 2012 in Visual Studio 2010

I was using reportviewer 2010 control in visual studio 2010 but i need to start using reportviewer 2012. How can I use the new ASP.NET webforms ReportViewer 2012 control in Visual Studio 2010 (without ...
1
vote
1answer
61 views

Getting Windows Azure Shared Caching to work with ReportViewer

Azure's shared caching session provider gives intermittent System.Runtime.Serialization.InvalidDataContractException session errors with Microsoft.Reporting.WebForms.SyncList with the serializing ...
0
votes
0answers
22 views

Routing causes Report Viewer to not display with asp.net

I have an issue where the ReportView control appears disabled and shows not records when using routing. If I turn off the routing code I can access the page and it looks fine, but when I turn on ...

1 2 3 4 5 24