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
5
votes
1 answer

How can I use RDLC reports with the ReportViewer Control in ASP.Net MVC?

I am fairly new to ASP.Net MVC. I have a requirement of showing an RDLC based report in MVC. Basically my requirement as well as what I have done is :- I have a ReportController inheriting APIController, which has a method that returns a DataSet.…
Nubicus
  • 55
  • 1
  • 1
  • 7
5
votes
2 answers

TFS:The "Microsoft.Reporting.RdlCompile" task could not be loaded from the assembly Microsoft.ReportViewer.WebForms, Version=11.0.0.0

I have a mvc5 web application in TFS server 2013. When I build the solution locally, its working fine. I created a Build definition in TFS and tried to Build, it returned below compiler error. "C:\Program Files…
lavanya b
  • 537
  • 2
  • 9
  • 21
5
votes
1 answer

Custom Report Items in local reports

i have read this article about custom report items(CRI) http://msdn.microsoft.com/en-us/magazine/cc188686.aspx The only problem is that CRI are only usable in reporting service and not in local reports. My question is it possible some how to use CRI…
IordanTanev
  • 6,130
  • 5
  • 40
  • 49
5
votes
1 answer

EF Codefirst and RDLC Reports

I'm working on a MVC4 web app with EF 6. I'm using EF code first approach (on a brand new database). So i have the model classes which i use in EF. Now i need to create some RDLC Reports. To do this i need to create a Dataset. So how can i create a…
InsI
  • 177
  • 3
  • 10
5
votes
2 answers

how to apply if Condition in rdlc report to display "Yes" if the column return true value and if it display false return "No"

i am working on rdlc report , i have a column in rdlc report , and i want if there is true value , return me "YES" and if there is false return "NO" i have tried the following code but it not working…
user3340023
  • 51
  • 1
  • 1
  • 2
5
votes
1 answer

How to disable matrix Column sorting in rdlc?

I have entered data from January to December in order, but when displaying in matrix in rdlc it automatically sort alphabetically "eg.. April August ... September.." How can I disable this sorting?
Sagar Dev Timilsina
  • 1,310
  • 15
  • 32
5
votes
4 answers

Crash while adding DataSets to a RDLC Report

When I try to add DataSets to any RDLC report within asp.net Project, Visual Studio takes some time (in wich it usually reads all compiled assemblies), and then suddenly crashes. It happens either in VS 2012 and VS 2013. In some other machines, it…
5
votes
1 answer

Printing RDLC Report directly without displaying reportviewer

I am working on WPF C# 4.0 project in which I am trying to print a RDLC report which is basically an invoice directly without displaying the ReportViewer. I refered code from the following MSDN link and modified it for my purpose. Following is the…
Nilesh Barai
  • 1,312
  • 8
  • 22
  • 48
5
votes
4 answers

Microsoft Reporting v.10 load problem

I am trying to reference microsoft reporting v.10.0.0.0 in my vs studio web site. For some reason it can't achieve that as it is always giving me a compile error that it could not load the type. Error 2625 Could not load type…
Branko
  • 51
  • 1
  • 1
  • 3
5
votes
3 answers

How to calculate rdlc tablix rows sum and rows count in textboxes

I have tablix named tablix2 and have 3 columns ,I want to calculate rows sum and count in 2 textboxes out of the tablix scope, I try this expression. =RowNumber("Tablix2") And =CountRows("Tablix2") And =Count(Fields!ID.Value,"Tablix2") Its always…
ASalameh
  • 783
  • 1
  • 8
  • 29
5
votes
4 answers

RDLC Report > Chart > How to display column name/title/label (x axis) vertically?

In Column chart of RDLC report, how to set x-axis label (titles) vertically? If the x axis names/titles are bigger then 2nd columns title goes in next line... i want all columns titles displayed vertically.
Krunal
  • 3,443
  • 3
  • 23
  • 27
5
votes
3 answers

Debugging a deployed cloud service app

How can a deployed cloud service application be debugged? I am trying to render a RDLC report in my application using Topics & Subscriptions. Whenever I run the cloud app locally, I don't receive any errors. But as soon as I deploy it over the…
5
votes
3 answers

ReportViewer RDLC - Azure Websites Error 80004005

I hope someone can help me with this. It's killing me. I've spent hours over days on it and my client is becoming increasingly frustrated. :( I am hosting on Azure Websites and SQL Azure. I am using v.10 of the Reporting assemblies. Everything works…
trnelson
  • 2,715
  • 2
  • 24
  • 40
5
votes
2 answers

RDLC printing on half A4

What I want to accomplish Requirement: print a receipt which is of A4 width and half of A4 height and print it rotated so it can be printed on continuous A4 (CCP). What I always get What I have tried RDLC report is defined as 205mm x 145mm so it…
clearpath
  • 916
  • 8
  • 24
5
votes
1 answer

RDLC reports are not published to after deployed to IIS?

I have a web application written in VB.NET. In my application I have a few RDLC reports that will be generated dynamically. Everything works fine during the development. But those reports are not working after I deployed my web application to IIS.…
GLP
  • 3,441
  • 20
  • 59
  • 91