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

Project Reference in RDLC ReportViewer Report

I have a Visual Studio 2005 solution which contains two projects - a Windows Forms project in VB and a class library in C#. My VB project includes an RDLC report file. I have recently learned that you can add custom code and external references to…
Tim
6
votes
2 answers

Preserve white space when hiding textbox in rdlc file

I've created a report that has an image on the left that is conditionally visible based on a parameter that's passed in to the report. There is another textbox on the right side of the page. I'm observing that when the image's Hidden property is…
Vic Peters
  • 338
  • 3
  • 16
6
votes
2 answers

RDLC how can I make text justify?

I'm working in a windows application and I want that in my RDLC reports text to be justified.
star
  • 164
  • 1
  • 2
  • 13
5
votes
2 answers

How can add I rownumbers for each group on a RDLC Report?

How can ı add row numbers like this: GROUP 1 RowNumber ID Name Age 1 231 test 43 2 324 test2 45 3 354 test3 34 GROUP 2 RowNumber ID Name Age 1 657 test4 …
Mehmet
  • 1,824
  • 3
  • 19
  • 28
5
votes
2 answers

Interpreting HTML Tags in RDLC

How can i interpret html tags like anchor tag and table in RDLC report. Is it really possible? Or only text decorating styles tags are allowed in RDLC?
itb564
  • 223
  • 4
  • 10
5
votes
2 answers

RDLC report footer with value from "Current Record"

I don't know if its possible or not, but thought I'd ask. Many times reports need data grouping to have anchored to the bottom of the report some summary information, such as invoices. You don't want the totals shifting UPwards based on only 2…
DRapp
  • 47,638
  • 12
  • 72
  • 142
5
votes
2 answers

Report created by ReportViewer shows in Excel an error message

If I generate an excel-report, excel 2010 shows the following warning message: file error: data may have been lost Note: I already have found the solution and will post it immediately. I make this entry for other people having the same error.
HCL
  • 36,053
  • 27
  • 163
  • 213
5
votes
2 answers

rdlc 2022 stuck on opening the file

When I add a rdlc to my project, it gets stuck on "opening the file" I am using VS 2022 and the Microsoft RDLC Report Designer 2022. any solutions to this?
Mrakulis
  • 91
  • 8
5
votes
5 answers

visual studio 2019 not show add new item Report rdlc

I installed Microsoft Reporting Services Projects VS2019 extention and ssdt based on this link on vs 2019 : https://learn.microsoft.com/en-us/sql/ssdt/download-sql-server-data-tools-ssdt?view=sql-server-ver15 I have wpf core project in vs 2019 , but…
M Komaei
  • 7,006
  • 2
  • 28
  • 34
5
votes
1 answer

Error when embedding report viewer dll using costura

I am creating a winform apps in vs2019, create report via Report viewer and it's work well. However, when i embed the dll using Fody/Costura, somehow the report viewer give an error. I also try manually embed the dll, but the same error still…
5
votes
4 answers

I can not get the report viewer to work on VS 2019

On Visual Studio 2019 I have added the Microsoft RDLC Report Designer from NuGet packages and I went ahead and added the Microsoft.ReportViewer.Winforms.dll to the project as well. I also created a .xsd and a .rdlc The reportviewer tool shows up on…
Yorelis
  • 75
  • 1
  • 1
  • 5
5
votes
1 answer

rdlc report alternative for .net core 2.0+

After doing some google searches, and checking some projects on github I came to know there is no support for rdlc report in .net core. May be I am wrong, Is there any way to at least generate pdf with rdlc report defination(like in .net4.5 mvc)? We…
mban94
  • 683
  • 1
  • 10
  • 18
5
votes
3 answers

Visual studio 2015 community report viewer version 12 Error getting extra margin using c#

I am using Visual studio 2015 community report viewer version 12 to show rdlc reports in my c# project. here is normal A4 page report its works fine for windows xp, vista, win 7 on client PCs but when same application is installed on Windows 10 64…
Imran Ali Khan
  • 8,469
  • 16
  • 52
  • 77
5
votes
1 answer

RDLC report with subreport from parent dataset?

So, I am trying to figure out how to do the following: Imagine I have a collection of customers. It contains the following properties: CustomerName AccountNumber TotalAmount Now for each customer, it has a collection of invoices. Each invoice…
Ahmed ilyas
  • 5,722
  • 8
  • 44
  • 72
5
votes
2 answers

Dynamically binding of Dataset to RDLC Reports

I would like to bind the dynamically dataset to the rdlc. I can view the report if I use inline DataSource in ASPX file (static binding). However, if I use the following codes, the Report viewer keeps showing "Loading.." Image. I have already…
TTCG
  • 8,805
  • 31
  • 93
  • 141