reportviewer

Modifying Export to Excel in ReportViewer

I have a formatted table in ReportViewer. When I want to export to Excel though - I do not want to export the formatted table - instead I want to output the original/raw/unmassaged data table in an excel file. What's the best way to intercept the Export to Excel function and output data in a different format? ...

Disable the Excel export option when I generate a report via the ReportViewer

How can I disable the Excel export option when I generate a report, via the ReportViewer, in my winforms application? ADDITION: In particular, I want to hide the toolbar button that refers to Excel output/export task, and not .the one that handles to the pdf export option. ...

Creating a PDF from a RDLC Report in the Background

I am running a month-end process and want to have it automatically create some of the reports that need to be created at that time. I am using rdlc reports. Is there a way to automatically create a PDF from a RDLC report in the background? ...

Visual Studio 2010 RDLC upgrade

I have .net 3.5 project containing some rdlc reports made in Visual Studio 2008. Opening the project with Visual Studio 2010 asks me to update the reports to RDLC 2008 format, at which point the reports dont work. Seems there is an incompatibility. Is there a good way to upgrade? Any workaround? I dont want to have to remake the repor...

Related objects in reportingviewer 10.0.0.0 give #error

In my VB.net apps i make use of Linq2SQL and Reportviewer with RDLC reports. With Visual Studio 2010 they upgraded this reportviewer component so you can use the newer RDL specification from 2008. Now I've a problem to show related objects. For example assume you provide an order to the datasource of the report and then you can show so...

Report Viewer Cell Empty

Hi, I got a Report Viewer report in Visual Studio.Net 2008. I added a new field to the dataset (get value from a stored procedure) and also added to the report as an expression: =First(Fields!SalesType.Value) But when I run the report the value above is blank for every single row in the report. ...

Getting the relative path to the rdlc report in my winform app.

I am automatically creating a PDF from some of our reports in a month-end process. I am running into a problem where ReportViewer.LocalReport can't find my report. Within the project, the report files are in "(project root folder)/Reports/report.rdlc". How do I set ReportViewer.LocalReport.ReportPath so I can reference my report file? I ...

Using Microsoft.Reporting.WebForms.ReportViewer in a custom SharePoint WebPart

I have a requirement where I have to display some data (from a custom db) and let the user export it to an excel file. I decided to use the ReportViewer control present in Microsoft.Reporting.WebForms.ReportViewer. I added the required assembly to the project references and I add the following code to test it out protected override vo...

Report viewer control IIS 6.0

I Have page with control reportviewer and its work on develop machine (vs2008) but on IIS 6.0 its not work, What I need to change in web.config or in IIS 6.0 to fix it' thanks, Dani. ...

RDLC: How to print multiple tables in one report

I'm generating the RDLC XML schema and showing the report in the ReportViewer control. No problems there. Now, I want a report with 2 tables, with 2 differents dataset. Something like this gets generated: <Body> <ReportItems> <Table Name="Table1"> .... </Table> <Table Name="Table2"> ...

Formatting ASP.NET ReportViewer with CSS classes and online specific rules?

How can I assign classes to the online/ASP.NET (not a desktop app) version of ReportViewer? I'm also intersted in using web specific formatting, e.g. ems versus ReportViewer desktop defaults such as points and inches. ...

Embed SQL Password into Crystal Reports RPT file?

We are experimenting with Crystal Reports viewers such as this one: http://www.thereportviewer.com/ ... which can actually re-connect to the data source and re-run a Crystal Reports RPT file with live data. However when running the report the viewer asks for a password to connect to the data source (in this case SQL Server). Does Cry...

Rdlc subt report, with group, alternate row color not working

So i have an rldc, and a subreport which is just the same data grouped into region summaries. on the main report the classic alternate row coloring stuff works fine... it even has groups, with page breaks between groups and the rowcolor stuff is fine. but on the subreport with the group the colors seem to be semi random. Does anyone k...

RDLC code tutorial

Is there any RDLC code tutorial or any related documentation? Thanks in advance ...

SSRS 2005 Report Viewer Date Picker Performance Issue

Hello, The date picker on the report viewer control in SSRS 2005 is causing our application to slow down a lot; when the user clicks the calendar icon, it really takes a while to load for them for some reason. Any ideas why? Thanks. ...

RDLC lookup field ( local )

Hi, Is there a way to get lookup value for a field in RDLC ( local ). I have a categoryID in Products, and i want to get and display category name from Category dataset (ID, Name). I know i can make join in original query, but is there any built in functionality for this common scenario ? (like in Crystal Reports) ...

How to place text on top of image in ReportViewer

I feel very silly asking this, since it seems like it just should work, but I cannot make it work and cannot find anything in the documentation about this. The problem: I'm developing an application in Visual Studio 2010 that is utilizing ReportViewer, rendering the report locally. In the report designer, I place a textbox on top of an ...

ASP.Net SSRS Report Viewer 9.0 and Report Viewer 10.0 Side-By-Side

We are rolling out a large deployment of SQL Server Reporting Services Reports and our platform is SQL Server 2005 so our Report Server is version 2005 running in Native mode. Our web application uses server reports rendered in the Report Viewer 9.0 control. We want to be able to use local reports based on the 2008 RDL spec to create som...

reporting tool/viewer for large datasets

I have a data processing system that generates very large reports on the data it processes. By "large" I mean that a "small" execution of this system produces about 30 MB of reporting data when dumped into a CSV file and a large dataset is about 130-150 MB (I'm sure someone out there has a bigger idea of "large" but that's not the point....

Binding Programatically Generated Datasets To Report Viewer

Today I researched about reportviewer to use it in my project. As I see the samples and tutorials in the web, We should create an dataset file to Solution Explorer and bind it to report viewer to show data. However I want to create dataset programatically like sample code below. And I want to bind it. Dim ds As New DataSet DB_Gateway...