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
0 answers

How to print normal RDLC report despite machine resolution

I am developing a Windows Form application in c# .Net 4.5.1 and I 've added few rdlc reports as part of it. Each report was added for a different purpose and is being shown in a separate form based on user request. Each form is simple it simply…
5
votes
2 answers

Generate and Design Rdlc file programmatically

I'm doing mvc reporting and i'm very new at it. I'm trying to create a report, and i have done it using rdlc. Everything works well, it can be exported to various format. My problem, when using rdlc is that we need to design and bind it first. How…
Arif Sam
  • 281
  • 1
  • 8
  • 26
5
votes
1 answer

Loading .rdlc report in Reportviewer manually in VB.Net

I need a serious help in reportviewer. I seen a lot links, tried a lot codes every way but cannot find a proper solution. Please make me understand and clear my doubts even. Totally confused which dataset to select during code and what is…
bonny
  • 688
  • 1
  • 14
  • 33
5
votes
2 answers

RDLC Report Jump to Another Report

(Windows application) I am very new to RDLC Report and I have drill Down Report In my Project. I read Many Forums and tutorial but i did not find any solution. I Have Added Report1.Rdlc In my project. There is One TextBoxName on that. What I want…
Dharti Sojitra
  • 207
  • 1
  • 10
5
votes
2 answers

RDLC vs Crystal Reports vs Anything Else Free: I'm running Informix and using C# 4.0

I'm not sure which is the way to go for choosing a report type with my current setup. In the past I was using MS Server 2008 R2, MS SQL Server, MS.NET C# 3.5. Now I'm using something similar except my Database is IBM Informix and I'm using MS.NET C#…
myermian
  • 31,823
  • 24
  • 123
  • 215
5
votes
1 answer

Distributing RDLC output as an email attachment

Our winforms application has long allowed a "print" option which basically uses RDLC. The customer has requested that we add a feature allowing users to send the "printed" output via email. Now, we know that an EMF file is created (in the TEMP…
hawbsl
  • 15,313
  • 25
  • 73
  • 114
5
votes
1 answer

How to replace a delimiter with a new line in rdlc

If I have a text separated by a pipe (|) delimiter. How to replace this separator with new line in RDLC report. EX: Name : John Michael | Department : Computer Science |Country : USA To Name : John Michael Department : Computer Science …
Anyname Donotcare
  • 11,113
  • 66
  • 219
  • 392
5
votes
0 answers

.NET LocalReport / .rdlc AppDomain issues

I'm using Microsoft.Reporting.WebForms.LocalReport and .rdlc Report files to generate .pdf:s. This is done in the background in a Windows Service (.NET 4.6, x64, VS2015). I'm having two issues: The Windows service keeps consuming memory an…
Poppert
  • 447
  • 1
  • 5
  • 16
5
votes
1 answer

Where can I find documentation for RDLC xml?

I'm trying to find documentation on RDLC. Specifically I'm looking for the different Actions in a TextBox element.
David
  • 19,389
  • 12
  • 63
  • 87
5
votes
2 answers

How to auto reduce font size if it is too long over fixed textbox in rdlc report

My textbox have a some properties like these txtBox.Cangrow = False txtBox.CanShrink = False Uncheck allow height to increase and decrease. This textbox use for display value which receive from dataset. Sometime data is too long. So I…
Fame th
  • 1,018
  • 3
  • 17
  • 37
5
votes
2 answers

RDLC Report- Error Rownumber() can't be used in filter

I have two Tablix(tables) and one dataset. They are bounding with this dataset Serial No. | Name ______________|________________ SN0003 | Beckham SN0005 | Henry SN0012 | Rooney SN0119 | …
Fame th
  • 1,018
  • 3
  • 17
  • 37
5
votes
3 answers

Rownumber() function of RDLC report isn't correct

Below figure is my report. This tablix has 10 row from dataset. It's grouped by TOOL_CODE and TYPE for get count. At "Count" Column is use this expression .. = Count("Detials") "Detials" is a name of group(by TOOL and TYPE) And No.Column I…
Fame th
  • 1,018
  • 3
  • 17
  • 37
5
votes
2 answers

Need good RDLC (Reports) examples/samples

I am in evaluation phase of report tool. I prefer RDLC for the same. But I need some examples/samples available in the wild which can guide us on using the RDLC off the shelf. I would be looking for examples from as simple as list of data and as…
Sachin Chavan
  • 5,578
  • 5
  • 49
  • 75
5
votes
2 answers

Generate columns dynamically in RDLC

I am trying to generate a RDLC report in ASP.NET where the columns of my Dataset will be dynamic and determined only at run time. I have a made a function that returns a DataTable, and by selecting this function in the RDLC report wizard, I can…
Shuaib
  • 779
  • 2
  • 13
  • 47
5
votes
1 answer

How to use same sub-report for n times to display different data

I want to use same sub report to display different data. I have tried to create list of class(for that sub-report) and assign each item to one sub-report at sub-report processing method and yes i could be able to make it but each sub-reports are…
pooya khan
  • 51
  • 2