Questions tagged [rdlc]

Client Report Definition (.rdlc) files are files that allow a ReportViewer control to use its built-in processing capability to generate a Sql Server Reporting Services (SSRS) report.

Client Report Definition (.rdlc) files are files that allow a ReportViewer control to use its built-in processing capability to generate a Sql Server Reporting Services (SSRS) report.

The ReportViewer control supports a local processing mode that allows you to run client report definition (.rdlc) files using the built-in processing capability of the control. The client reports that you run in local processing mode can be easily created in your application project.

References

See also the MSDN article on .rdlc files.

2990 questions
8
votes
1 answer

Creating an rdlc report with multiple tables (one-to-many relationship)

So, I'm new to rdlc (and reporting in general actually). I have a table that has a one-to-many relationship with another table, and I'm trying to represent them in an rdlc report as multiple tables for each item. Note: The tables are originally…
8
votes
2 answers

Printing a Local Report without Preview - Stream size exceeded or A generic error occurred in GDI+ C#

I am using this article to print my rdlc directly to printer but when I am trying to create Metafile object by passing stream it gives me error. (A generic error occurred in GDI+) Code: using System; using System.IO; using System.Data; …
3 rules
  • 1,359
  • 3
  • 26
  • 54
8
votes
2 answers

Visual Studio 2010 RDLC: Support for HTML?

I've read rumors that with the Report Viewer component of Visual Studio 2010 Professional, it is possible to render HTML from the database into a report. Unfortunately, I wasn't able to find definite information online and I'd rather not buy the…
Heinzi
  • 167,459
  • 57
  • 363
  • 519
8
votes
1 answer

How to set ConsumeContainerWhitespace = true in vs 2013

How to set ConsumeContainerWhitespace = true/false. In report property i doesn't found it. I got pageSetup, Code, References, Variables in report property.
8
votes
3 answers

Local report rdlc to pdf very slow

Is there any way to improve the performace of local report or even an alternative if not ? Current code for converting rdlc to pdf below. Have been looking for a solution for quite some time but the general consensus seems to be that its just slow, …
jOE127
  • 123
  • 1
  • 6
8
votes
4 answers

RDLC tables - merging cells vertically and horizontally

I am working on a new RDLC report (as part of a WinForms application) and I need to have the report take a simple table (6 columns of simple data), and for each row in the table, display a box that contains that data, but arranged such that the…
Scott
  • 123
  • 1
  • 1
  • 7
8
votes
5 answers

One or more parameters required to run the report have not been specified

I'm trying to print a RDLC file directly without showing Microsoft Report Viewer, I have followed the MSDN's example but now, every time I call the "Render" method of my instance of LocalReport class it throws the "One or more parameters required to…
mrtaikandi
  • 6,753
  • 16
  • 62
  • 93
8
votes
2 answers

Visual Studio 2013 - Add Item > Report option missing

I want to create RDLC file in my C# project. (http://msdn.microsoft.com/en-us/library/ms252067.aspx) But I'm not getting Reporting item templates (Report or Report Wizard). I've got VS2013 Professional Edition so I assume it should have been…
Vivek Athalye
  • 2,974
  • 2
  • 23
  • 32
8
votes
2 answers

How to get group headers to span a Tablix column

I am using Microsoft Reporting Services (rdlc, that comes with Visual Studio 2010) Suppose I want to create a report that has a Group Header, detail rows, and a group footer. (I'm using Tablix, but if there is a different way, I'm open to it). Now,…
JMarsch
  • 21,484
  • 15
  • 77
  • 125
8
votes
1 answer

Multi Column RDLC report, with the data flowing from Left to Right instead of Top to Bottom

Does anyone know how to create an RDLC subreport with multiple columns that flow from left to right instead of Top to bottom. The report will show a list of words, say for examples colors. I need the colors to be displayed like this : Red …
Mairead
  • 131
  • 1
  • 2
  • 4
8
votes
1 answer

How do you insert a page break into a RDLC report?

This is a very simple thing, but I just haven't been able to find anything. I have a report and at the end, I have a "totals" row. I simply want to insert a page break before this row so that it prints on a separate page. How do I do this?
Riz
  • 6,486
  • 19
  • 66
  • 106
8
votes
2 answers

Display text vertically start from bottom to top in rdlc 2010

I want to display text in column header of ssrs 2010 like below image. i am able to display text vertically but it will display text top to bottom. I am using visual studio 2010 and local report (RDLC file).
Rikin Patel
  • 8,848
  • 7
  • 70
  • 78
8
votes
4 answers

How to check multiple conditions in rdlc expression

I have worked on only possible 2 in rdlc Expression values as like =iif((Fields!Gender.Value="1"),"Male","Female") Here I can work with only 2 possibilities. But if I want to check 3 or more conditions than how can I?
Sonam Mohite
  • 885
  • 4
  • 19
  • 51
8
votes
3 answers

How to create totals row for grouped columns

If have an rdlc-report with grouped columns within a tablix (table). I want to add a footer row that spans all dynamically created columns and shows a total for all columns together. How can I tell to a cell that it should span all created columns…
HCL
  • 36,053
  • 27
  • 163
  • 213
7
votes
5 answers

Binding object data source with nested list objects in RDLC

I know we can bind object data source to RDLC. I am trying to bind an object like as follows: public class ContactReportData { public string ContactReportHeading{get;set;} public string ContactReportSubHeading{get;set;} public List
Chinjoo
  • 2,697
  • 6
  • 28
  • 45