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

RDLC throws exception when adding Arabic characters

I have an RDLC report that is generated in ASP.NET. The report is loaded into a report viewer hosted in an ASPX form. The report is printed correctly if only English characters were written to it, if Arabic characters are added the report will be…
Hasan Shouman
  • 2,162
  • 1
  • 20
  • 26
0
votes
1 answer

How to get missing fields to fail?

I have some .rdlc reports. I am trying to write some tests for them, and it was working well. I will get failing tests if the parameters I specified don't match, and for one report I will get an exception if the fields in the report data set don't…
Dave Cousineau
  • 12,154
  • 8
  • 64
  • 80
0
votes
1 answer

ReportViewer: Combine Multiple Reports into one report

I have a report that I need to run multiple times, with different data input each time. Each report has a page header that uniquely identifies it, the actual body of data, and then a footer that contains the page count in a [x of y pages] format. …
Dugan
  • 908
  • 2
  • 13
  • 30
0
votes
1 answer

How to display item images in RDLC Reports

But, when i try to create RDCL report from the item tables it shows as "#Error".Image or only first item image is appeared. =Field!ImagePath.Value in ImagePath i have the image directory path of that item image
0
votes
2 answers

how to get Min value from row exclude 0 (Ignore 0) in RDLC

i have an RCDL Report in the summation group row, need to get Min value from summation group row exclude 0 this Example for need i used this expression but it still return 0: =IIf ( ReportItems!x7s.Value <> 0 AND ReportItems!x7s.Value <=…
0
votes
0 answers

sum of calculated expression in rdlc report

I want sum of salary column: this is expr for salary column: =iif(fields!Items.Value="A",(cdec(sum(fields!sumofincome.Value)/1000*3)),…
mahdi
  • 1
  • 1
0
votes
0 answers

How to embed Word and PDF file into RDLC in C#

I need to insert/embed the multiple Word/PDF file into RDLC. It will render like a normal RDLC report viewer and export to Word/PDF as well.
Palani Kumar
  • 329
  • 4
  • 15
0
votes
1 answer

How to use vb.net dataset, data are from manual added rows and show it to tablix RDLC?

Can you help me? Im having this error when I click the button. It says A data source instance has not been supplied for the Data source 'BatchCodeGenerator'. And I have my Dataset.xsd also added, I dont know if it helps Private Sub…
0
votes
1 answer

"Where" Condition in RDLC Vb.net

I have a table like : ColumnA ColumnB 8.75 J 5.05 T 6.1 T 8.5 J I want to sum ColumnA data where ColumnB = J and show it in one of the RDLC textboxes. What I should write in the Expression Field?
0
votes
0 answers

How can I instantiate LocalReport with ReportViewerCore.NETCore package?

Problem: I try to instantiate LocalReport (using var report = new LocalReport();) ReportViewerCore.NETCore package and I get the following error message: System.MethodAccessException: 'Attempt by method…
odd_laner
  • 1
  • 2
0
votes
0 answers

PDF Viewer not loading properly while printing any document using RDLC Report in .NET C#

I am using C# Web Application to print reports using Rdlc report(version 15.0.0.0) in .NET framework 4.5.2 . On Printing reports continuously , I often encounter this problem where the report doesn't load in PDFViewer and PDFViewer preview appears…
0
votes
0 answers

How to preview a report with greyscale color?

I make a reportviewer for previewing a report. A report must display some image. But I want to show a preview report before printing with a greyscale. How to do? I don't want to convert original image to greyscale.
Fame th
  • 1,018
  • 3
  • 17
  • 37
0
votes
0 answers

How do I add a rowNumber in RDLC that counts all the products and not the materials as well(they are grouped by products)?

At the NR column I want to have 1, 2, 3 etc and not 4, 8(counting all the materials) or 4, 4(counting all the materials for each product, this happens when I do RowNumber("GroupName"))
Genc Qelaj
  • 13
  • 2
0
votes
0 answers

changing height or width of table cell in expression

Is possible to change size of table cell in rdlc expression, if could please give me some example, I would appreciate it. Thank you very much
e Res
  • 101
  • 1
  • 10
0
votes
1 answer

Sum textboxes RDLC Report

I have a table and I want to sum the total of the 5 textboxes, I tried: =ReportItems!ttw1.Value + ReportItems!ttw2.Value + ReportItems!ttw3.Value + ReportItems!ttw4.Value + ReportItems!ttw5.Value But the result is odd: (last row) Tried to use…
Abd Domingos
  • 55
  • 1
  • 13
1 2 3
99
100