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
4
votes
0 answers

how to set the height of header is auto increasing in rdlc

I am using RDLC to create a report. In header, there is Textbox which has dynamic content. When the height of Textbox content exceeds header height, it was overlain because header height is static. So how to set the height of header is auto…
John Nguyen
  • 711
  • 6
  • 21
4
votes
1 answer

ASP.NET MVC - Conditionally open PDF/Image on new Tab

Here I have a filtering report page, where I can filter some information for a report (RDLC, returning a PDF or Image file). Today, this page return files always on a fresh tab, because I'm using this: @using (Html.BeginForm("Report",…
cezarlamann
  • 1,465
  • 2
  • 28
  • 43
4
votes
1 answer

Dynamic Columns In RDLC

I am working on a project of RDLC report in which I have took tablix and bind the table's columns with dataset that I have added in my RDLC report. Everything is working fine, but the interesting thing is my reports are customizable. Let's suppose…
garvit gupta
  • 301
  • 3
  • 18
4
votes
2 answers

How to show the table horizontally in (rdlc) report

I want to show the table horizontally like this: | data1 | data2 | data3 | data4 | .... | data5 | data6 | .... For more information, I am using visual studio 2010. and it will go to new line I saw similar question here but it goes to new page…
John Nguyen
  • 711
  • 6
  • 21
4
votes
4 answers

Print preview using report viewer makes extra page with blank

I am trying to get a report from my items.I make my report by Rdlc file using visual studio 2012. I fetch my data using this code: List list = customerRpt.ReturnListOfInvoiceDetailsForGRV(invoiceDetails); …
Mehrdad
  • 174
  • 1
  • 4
  • 14
4
votes
1 answer

Adding watermark or background image to vs 2013 report

How would you go about adding a watermark or background image to a VS2013 rdlc. I was able to add an image to my report data. I then dragged it to my report, and then the repor tablix was placed over the image. This didn't work because the image was…
Tom S
  • 227
  • 1
  • 6
  • 19
4
votes
5 answers

Report Viewer - Setting the decimal places for a textbox value

I'm using Report Viewer Control (rdlc) to generate reports. One of my columns have the value =AVG(Fields!Reading.Value, "CellReading_Reading") I'm getting the value with 10 or more decimal places. But i want to round it off to 3 decimal places.…
NLV
  • 21,141
  • 40
  • 118
  • 183
4
votes
2 answers

Printing landscape/portrait in rdlc without preview

I am trying to print a local report in either landscape or portrait. private void Export(LocalReport report) { Warning[] warnings; m_streams = new List(); var deviceInfo = new StringBuilder(); …
wakthar
  • 720
  • 1
  • 8
  • 21
4
votes
0 answers

In an RDLC consume white space when hiding an image based on an expression

I have an RDLC that has an image in it that gets its image to be shown from a database. I have set the visibility to show the image based on a true/false expression. My problem is, when the image gets hidden, the white space is not consumed and…
Ben Ziegler
  • 895
  • 1
  • 7
  • 18
4
votes
1 answer

Using xpath and rdlc report

i will try to explain the problem very clear. I user MicroSoftReportViewer where i load my report. But before loading it i want to change somethings.Till here everything is ok. I want to use xpath but when i load the rdlc( xml ) file using…
IordanTanev
  • 6,130
  • 5
  • 40
  • 49
4
votes
1 answer

Using ReportViewer in VS 2013

I have a VS 2010 WPF application which uses ReportViewer (RDLC) which I am trying to build in VS 2013. I am having a problem with the build. In 2010 (.NET 4) it worked fine with Microsoft.ReportViewer.WinForms. To build under 2013, I found two NuGet…
Zenilogix
  • 1,318
  • 1
  • 15
  • 31
4
votes
3 answers

c# rdlc Cannot create a DataReader for dataset "ProjectDS_ObservationImages"

I have the following issue appearing in a report, the data for which is dynamically loaded using C# in a win-forms .net 4 application. Cannot create a DataReader for dataset "projectDS_ObservationImages" The source that loads the report with data…
Gavin
  • 2,153
  • 2
  • 25
  • 35
4
votes
1 answer

Show data Horizontally in rdlc report

i'm using visual studio 2012 with c# and want to use rdlc for some reports. I'm a little bit familiar with reports and i can show my data on tablix or other controls. But now i need to show data horizontally. if i use tablix or list data shows…
113408
  • 3,364
  • 6
  • 27
  • 54
4
votes
1 answer

How to embed a Font in solution to use for PDF with RDLC

I have an RDLC report created via Webforms.LocalReport that uses a few custom fonts that I have installed on my dev machine. This works well, and embeds the fonts in the PDF so that others don't need the font installed to view. My problem is, when…
brad
  • 105
  • 1
  • 9
4
votes
2 answers

.NET ReportViewer capabilities: Displaying multiple rows

Situation: We've designed a decent looking Report page using the .NET ReportViewer (ASP.NET, RDLC) with a custom object from our object model. My underlying (and possibly incorrect) assumption was that if we bound a collection of custom objects to…
JR.
  • 407
  • 1
  • 5
  • 11