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

ReportViewer 2010 Not Loading Datasource from code

I have created a project with a simple RDLC report in ASP.NET which when I bind the DataSource of the report at design time using a SqlDataSource everything works just fine. But if I remove the binding and try to set the DataSource from code then…
Ira Rainey
  • 5,173
  • 2
  • 34
  • 42
4
votes
2 answers

RDLC expression resulting in #error

I have two decimal fields, profit and revenue. They are displayed in a tablix control, each has their own column. In a third column, I want to divide profit by revenue. The result when either of those fields is zero is #error, this I'm guessing…
HunterX3
  • 338
  • 1
  • 6
  • 18
4
votes
3 answers

Best way in Converting DataGrid View to DataSet/DataTable

DataSet, DataTable and linq expression are common DataSource values of a DataGridView. Now in reverse, is it possible to pass/bind a DataGridView record to DataSet or DataTable? Thanks
BizApps
  • 6,048
  • 9
  • 40
  • 62
4
votes
2 answers

How to load Font from file on a RDLC report?

In Visual Studio 2005, how can I load a font from a file and use it on a RDLC report? I know how to load a font from a file thanks to this question, but i'm not able to use it in a RDLC report.
FerranB
  • 35,683
  • 18
  • 66
  • 85
4
votes
0 answers

Looking for RDLC designer run at Web browser

My customer asked me that is possible to provide a designer for edit RDLC/RDL file in the Web, I used Stimulsoft report before, i know it allow user edit their report online,and it use Flex and Silverlight implemented the designer. But it can not…
guaike
  • 2,471
  • 9
  • 31
  • 42
4
votes
1 answer

RDLC Memory Leak

In my application (.NET Framework 4.5) I'm rendering some RDLC reports (50-60) in order to export them to a single PDF. Unfortunately there seems to be a big memory leak, basically every LocalReportnever gets disposed. This is my code: public void…
SilentRage47
  • 934
  • 2
  • 14
  • 31
4
votes
0 answers

RDLC To Excel Export, Header and Footer Character Limit

Apparently Excel is hardcoded to only allow 255 characters in footers (and headers I think). Naturally I wanted to put more than that in the footer hence this post. Header Workaround: I found that putting stuff in the RDLC header and setting…
Matma
  • 345
  • 4
  • 17
4
votes
2 answers

User defined reports with SSRS

I have an web application which serves SQL reporting services reports via the reportviewer control. Because of the complexity of some of the reports I use rdlc reports attached to business objects. Now I would like to expand the system and allow…
MBoy
  • 704
  • 1
  • 7
  • 18
4
votes
1 answer

Microsoft.ReportViewer.WinForms for core 2.0

I am using RDLC reports and generating PDF in MVC. While migrating MVC project to Core 2.0 I observed there is no Microsoft.ReportViewer.WinForms for core 2.0. Is there any alternative?
Bhanu Reddy
  • 205
  • 3
  • 12
4
votes
1 answer

using OR in IIF statement...RDLC

Please can you someone help me? My question is : How to use properly OR in IIF statement in RDLC report? Both Fields!A.Value and Fields!B.Value contains string or empty string. This code works fine: =Iif(Len(CStr(First(Fields!A.Value,…
marek
  • 43
  • 1
  • 1
  • 3
4
votes
2 answers

Charts added to RDLC report via designer in Visual Studio 2017 won't work

When I add new Report.rdlc file to my project and open it with XML editor the top of the file looks like this:
guuczi
  • 79
  • 1
  • 1
  • 6
4
votes
1 answer

Using a Resource Image as the value in RDLC Parameter

I'm trying to pass an image as a parameter to an Image in a RDLC Report. I tried using the following: string imgPath = new Uri("pack://application:,,,/Resources/default_product_img.png").AbsoluteUri; string imgPath = new…
Carl Binalla
  • 5,393
  • 5
  • 27
  • 46
4
votes
1 answer

Assembly conflicts after install Microsoft.ReportingServices.ReportViewerControl.WebForms

I have assembly conflicts that I can't solve (or understand) after I've upgraded to ReportViewer 14.0 in an existing MVC-project. Warning Found conflicts between different versions of the same dependent assembly. In Visual Studio,…
roberth
  • 924
  • 9
  • 17
4
votes
1 answer

Customize footer content of main report for subreport pages in RDLC

I have one report which contains a subreport in it. want to customize footer content for subreport only. for eg: footer is now i have to use same footer but with a bit change in that how to achieve this, because i do not found anything for…
4
votes
1 answer

Feed RDLC (Local) report report from List (Entity FrameWork)

I got myself a BiningList Of student (Entity Framework created class). I just want to feed my RDLC report from that instead of using DataSet or stored procedures. This class contains multiple properties like : string Name; string FamilyName; string…
alireza amini
  • 1,712
  • 1
  • 18
  • 33