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
6
votes
3 answers

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…
Lawrence P. Kelley
  • 4,276
  • 3
  • 28
  • 24
6
votes
3 answers

How to collapse a row in RDLC rather than just hide it?

I have an RDLC report showing a table. A certain row in this table should not appear in some conditions apply. I was able to set the Hidden property to false using an expression if these conditions apply. The problem is that, though hidden, the row…
Emad Gabriel
  • 3,677
  • 7
  • 37
  • 49
6
votes
1 answer

Page breaks in subreports are not being respected in autogenerated RDLC code

I have some C# code which generates some RDLC such as this as a subreport of another report:
ekolis
  • 6,270
  • 12
  • 50
  • 101
6
votes
3 answers

How to use System.Drawing.Image in RDLC Image Control?

Is it possible to use System.Drawing.Image in an RDLC Image Control? All I have been reading were 3 methods: database embeded resource external file Thank you thank you. EDIT: Following up from this .NET or C# library for CGM (Computer Graphics…
Jake
  • 11,273
  • 21
  • 90
  • 147
6
votes
0 answers

The data area passed to a system call is too small upon printing c#

I have a window service the prints certain documents with image using the PrintDocument class. Occasionally, I'm encountering this error upon printing "The data area passed to a system call is too small" and the image on the report was not printed.…
6
votes
1 answer

Pagebreaks in RDLC Subreports don't appear

I am trying to represent a parent-child-grandchild relationship in a SQL Server Reporting Services RDLC report. The report is rendered into a reportviewer control that is hosted in a WPF app. I am using a CLR dataset based on IEnumberable<> and…
Paul Chavez
  • 895
  • 2
  • 13
  • 22
6
votes
2 answers

How to remove some data in Header in next page (RDLC Report)

I'm having a trouble on creating reports for my client because of the format. I just want to display the logo on the first page of my report and the rest will display without the logo. Please see my sample format. Note: I dont want to remove the…
jned29
  • 477
  • 12
  • 50
6
votes
2 answers

How to process subreport of a subreport in rdlc?

I have an RDLC report which contains few sub reports. I am processing all those sub reports with LocalReport_SubreportProcessing event. Now out of these subreports, one report again has its sub report. I am not getting the idea how to process this…
Microsoft Developer
  • 5,229
  • 22
  • 93
  • 142
6
votes
2 answers

RDLC, Dynamic Picture based on parameter, c#

Is it possible to add a dynamic picture to a parameter in rdlc report? for example: =SWITCH(Parameters!picture.Value="1","picture1.jpg", Parameters!picture.Value="2","picture2.png") or something similar? or any other way to use the…
C.H
  • 73
  • 1
  • 4
6
votes
8 answers

The report definition is not valid

I have converted an .rdlc rerort from SSRS 2005 to SSRS 2008. Now when I am going to build that project I have got error. The report definition is not valid. Details: The report definition has an invalid target namespace…
Atul Phadtare
  • 555
  • 3
  • 7
  • 13
6
votes
1 answer

Printing images on multi-page SSRS RDLC report does not work

I am working on an application that loads a generic list of objects into an RDLC report, which is then rendered on the client machine using the WebForms ReportViewer Control. It renders fine and exports fine, but if I try to print it, it spools…
JasonG
6
votes
1 answer

How can a delegate respond to multiple events with a generic and extensible class?

I have rigged up a technique to handle multiple subreports in an rdlc report, but as I have tried to make it generic and repeatable, I have instead had to take the model and tweak it slightly for each case. For example, if I define an abstract…
bentaisan
  • 1,056
  • 3
  • 12
  • 29
6
votes
1 answer

Why isn't the Visual Studio Report Data screen showing all the available Datasets?

In the below example I have a number of public classes that are defined in a namespace. These are going to be instantiated, bound to ReportDataSets and handed off to my ReportViewer control to generate a report from my report definition files. When…
6
votes
4 answers

RDLC report doesn't detect NULL values correctly

I have a problem with generating .rdlc report. One of the columns has this expression: IIF(CInt(Fields!MyColumn.Value) = 0 or Fields!MyColumn.Value is nothing,"Unknown",Fields!MyColumn.Value) I've also tried to use that field as a…
NDraskovic
  • 706
  • 2
  • 22
  • 50
6
votes
1 answer

Reload and Refresh Report Viewer based on New RDLC File

I have written a C# program using VS 2008 that uses the built in Report Viewer and processes reports locally. When the report is being viewed I want to replace the current rdlc file with a new one and refresh the report without closing the report…
JK.
  • 1,144
  • 3
  • 15
  • 32