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

How to directly print rdlc report without showing PrintDialog() in C#?

I have an application where I have to print a RDLC report without showing the printDialog and using the default specified printer defined in the application. Below is my test implementaion code. Microsoft.Reporting.WinForms.ReportViewer…
Redone
  • 1,253
  • 5
  • 18
  • 37
15
votes
4 answers

How to page break after specific row(Suppose 25 rows) in rdlc reporting

How to page break after Specific rows (like 15 rows) in rdlc reporting.
yeasir007
  • 2,110
  • 2
  • 28
  • 43
14
votes
5 answers

How to remove the time and Display the Date only in RDLC

all I am using Winform(C#) and RDLC MySQL. In that I try to show the date only in Tablex. But this date format have time also. How to remove the time. My Expression is,.. =Fields!date.Value See my report below. Thanks in advance? I am tried…
Sagotharan
  • 2,586
  • 16
  • 73
  • 117
14
votes
8 answers

.Rdlc Report in MVC project - Managed Debugging Assistant 'PInvokeStackImbalance'

I am so close to getting my last report up and running. I have not had this problem with any other reports. I am trying to create a report based off a database record. When I go to create the report by LocalReport and creating the parameters for the…
Bigbear
  • 489
  • 2
  • 5
  • 21
14
votes
2 answers

Generate PDF in .Net core 2.0 using rdlc

With .Net Core 2.0 not supporting Report Viewer, is there any other alternative way of doing this? I found alanjuden's solution (https://alanjuden.com/2016/11/10/mvc-net-core-report-viewer/), but actually looking for official references. We have…
Neelima Ediga
  • 346
  • 1
  • 5
  • 19
14
votes
3 answers

RDLC report stop working after change Visual Studio 2015 to Visual Studio 2017

I have an AspNet MVC project in Visual Studio 2017 that was previously developed in Visual Studio 2015. This project contains many rdlc files that were working fine until I edited one of them. Now, when I try to download the pdf from the rdlc edited…
Fidel Garcia
  • 405
  • 1
  • 6
  • 16
14
votes
9 answers

Visual studio is hanging when add a new dataset to RDLC report

I create a specific report.rdlc then i want to add new datatable to my report . But after changing the data set ,trying to add new dataset to my report . The visual studio is crashing every time and restart without adding the new dataset ! I search…
Anyname Donotcare
  • 11,113
  • 66
  • 219
  • 392
14
votes
11 answers

MSBuild Using Wrong Version of Assembly to Compile RDLC File

I am using the reportviewer control from VS 2010 to create client side reports (rdlc). Everything is working fine on my development machine, and when I manually compile (via VS2010) and manually deploy to a test machine that doesn't have…
Phil Sandler
  • 27,544
  • 21
  • 86
  • 147
14
votes
1 answer

RDLC Switch Construct - is there an Else?

I have the following expression within a report: = Switch( Fields!RATE_CODE.Value = "First", " £/Week", Fields!RATE_CODE.Value = "Second", " £/Day") I've searched all over but cannot find a way to add an else or default to this…
m.edmondson
  • 30,382
  • 27
  • 123
  • 206
13
votes
6 answers

rdlc expression iif use?

In an rdlc report I want to compare integers like if(expression) { // do something } else if(expression) { // do something else } What is the syntax for this?
Shamim
  • 359
  • 4
  • 12
  • 25
13
votes
3 answers

Security Error with Report Viewer Control and RDLC Reports in ASP.NET 4.0

Using ASP.NET 4.0, I'm creating an RDLC stream by instantiating a Microsoft.ReportingServices.RdlObjectModel.Report, setting the Code property, and returning the stream using the RdlSerializer. Then I'm passing that stream to the ReportViewer like…
jskentzos
  • 141
  • 1
  • 1
  • 4
13
votes
2 answers

Rendering an RDLC report in HTML in ASP.NET MVC

I would like to render an RDLC report in HTML within an ASP.NET MVC project. I successfully made a prototype that renders an RDLC report in PDF, Excel, and TIFF image, with the help of this article. But I was surprised that HTML is not one of the…
William Niu
  • 15,798
  • 7
  • 53
  • 93
13
votes
10 answers

Report viewer does not load, showing blank space - running local RDLC files

I got a problem with reporting services, running local rdlc files on the 2005 version. I have in the HTML a report viewer set to run locally as follows :
Mez
  • 4,666
  • 4
  • 29
  • 57
13
votes
2 answers

Dynamic Column width for a RDLC report

Lets say that I have 10 columns to view report and I want to hide 3 of these columns at runtime based on the value of parameter which the user would select. This can be easily done by setting the column visibility of each of these 3 columns based on…
Shohel
  • 3,886
  • 4
  • 38
  • 75
13
votes
3 answers

Rdlc report alignment when it filed is empty or null

I am working with Rdlc report. I have these fields: First name Address1 Address2 City, state, zip If any one of these fields is empty, it should not show the blank space. For example (expected output) First name, Address1, City, state,…
Thiyagarajan
  • 327
  • 1
  • 6
  • 21