Questions tagged [dynamic-rdlc-generation]

Use this tag for questions about the dynamic generation of the Client Report Definition Language file

Dynamic generation of RDLC Client Report Definition Language file

157 questions
0
votes
1 answer

Create a number X of tables depending of a variable

I' have a collection of fruits, the parameters that define a fruit is the kind of fruit and the weight. I want to generate a table for each type of fruit in the data. For example; if in database exist apple, banana and mango, but in the data there…
0
votes
0 answers

The WebResource.axd handler must be registered in the configuration to process this request. (RDLC Report Runtime)

I know this problem has already been discussed before. But in my case its different. Whenever I try to show .rdlc report it gave me an exception. I don't Understand what's the cause. I have tried to change some references in my config file but still…
0
votes
0 answers

Editing word document report generated by reporting tools

i want to edit the report after generating from any reporting tools. currently i am using RDLC for generating report however i am unable to edit the word document after exporting. here are some requirements: Add new content by pasting from the…
0
votes
2 answers

In RDLC expression, how to put multiple conditions?

In RDLC report, I have a tablix on which I have already applied one condition to make it HIDDEN/VISIBLE. =IIF(First(Fields!IsSatisfactory.Value, "DataSetCNGCertificates"), true, false) But now I need to apply this…
Stacky
  • 27
  • 6
0
votes
1 answer

Rdlc report unable to parse regular expression

I am using the .net framework 4.7.2. And In a web API project with Ninject dependency injection, I am trying to generate an rdlc report with an expression. The problem is the report is generating perfectly when I am not using any expression but…
Amjad
  • 330
  • 7
  • 22
0
votes
0 answers

Generating RDLC Report of General Ledger in C# windows Form Application

This is the screenshot I have taken from Accounting software and I want to create a similar type of report using C# Windows Form Application, I have a data against all account numbers, What I think of is running multiple quires for all account…
0
votes
1 answer

What is wrong in this rdlc expression. When ever the difference is zero it throws error

=iif(Sum(Fields!ClsRead.Value)-Sum(Fields!OpnRead.Value)=0,"NO HSD Supplied",sum(Fields!HSDIssued.Value)/(Sum(Fields!ClsRead.Value)-Sum(Fields!OpnRead.Value)))
user14418741
0
votes
1 answer

RDLC Report change font color if value is greater than zero

I am trying this in the formula options of RDLC report: IIf(fields!paid_amt.Value >1,"Black","Red") But it is not working. Any idea that what is the problem?
ishaan Gupta
  • 198
  • 1
  • 17
0
votes
0 answers

Multiple RDLC to Single word document on separate page

I Have 4-5 RDLC which i want to write in Word Document. I have converted every RDLC to byte array then i am combining two byte array to single byte array but memory stream writing only first array. Can anyone assist here ? Please find below code…
0
votes
1 answer

RDLC -Multiple Pages

I have built a rdlc report to print one page on A4 size, I usually print one invoice and that works great, I just want to achieve printing many invoices for the same report any suggested ideas here is the code which I am using to generate the report…
0
votes
1 answer

RDLC Report is only showing first item in the list

I'm trying to modify an existing rdlc file in a C# Windows Forms project The report works, but it only shows the first item in the List. How do I get it to show 1 page for each item in the List? My report's dataset is a list with these…
boilers222
  • 1,901
  • 7
  • 33
  • 71
0
votes
0 answers

rdlc report with row, column grouping and subreport

I am trying to create a rdlc report for student marks, the report gives all the exam marks for a year I have grouped the rows as per studentId, column grouping is made on examinationId. Each exam has child exams, I am using subreporting to fetch the…
0
votes
1 answer

Generate RDLC report for list of persons

it's a kind of letter that i should generate for all customer in the application, the header contain information of customer and the body contain the letter and some customer details. for one customer it's simple but when i come to the generation of…
Wael Arbi
  • 27
  • 4
0
votes
0 answers

How can i add Color of some specific String in Return Text

I Formatting Text in RDLC Report. This code is correct for justify Text but i also want to add diffrent color of some specific word in return Text.
0
votes
1 answer

How to remove specific text after the pipe sign in rdlc expression?

I have an expression in rdlc textbox that contains values like this STRU|CBR Now I want to remove the text after pipe sign | and also the pipe sign if there's one. But if there's no pipe sign then the actual data should be returned. I tried this…
Coder Guy
  • 7
  • 5