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

Passing Report Parameters to SubReport in VS 2010 RDLC

Passing Report Parameters to SubReport in VS 2010 RDLC I'm having some troubles defining and passing report parameters to subreports in VS 2010. In VS 2008 in the design view I was able to right click and define the report parameter and have it…
Prodip
  • 91
  • 1
  • 1
  • 3
7
votes
1 answer

How to show report data in center of RDLC report?

I am using RDLC to generate product receipt but facing issue with layout and design in RDLC.All my report contents are not coming in the center. My page size is 7.30 centimeter and I want this content to be in center of the report This is what I am…
I Love Stackoverflow
  • 6,738
  • 20
  • 97
  • 216
7
votes
2 answers

Right align image in RDLC report

I want to right align a proportionally scaled image, on a page in the report. Seems like images are always aligned left in their bounding box. The image however, is dynamically assigned. So no, I can't just position the image in the right…
Tom Deleu
  • 1,177
  • 1
  • 15
  • 29
7
votes
1 answer

Create RDLC report dynamically at run-time from a DataGridView

I have a form AdvancedSearchForm with a DataGridView control dgrData and a button Report in C# Winform. On click of the button Report, I wish that a form with a ReportView control be shown with the same columns as in the DataGridView with the same…
7
votes
0 answers

Ignore Reporting-Services Warnings in Visual Studio

I'm trying to get rid of the 'rsOverlappingReportItems'-Warnings in the Visual Studio, since we did the overlapping on purpose. I did the usual proceeding by getting the warning-code: SomeRDLC.rdlc : warning rsOverlappingReportItems: The text box …
Matthias Müller
  • 3,336
  • 3
  • 33
  • 65
7
votes
1 answer

How to set parameter values in RDLC

I have added two text boxes for the date range in the report. To fill the values in the text boxes, I set parameters to the text boxes. Now the date range is coming from a form named DateRange having two DateTimePickers. How to set the value of the…
DhavalR
  • 1,409
  • 3
  • 29
  • 57
7
votes
3 answers

Copy RDLC report text and paste in notepad

I have a reportviewer in windows form application which is showing RDLC report. I need to copy a text of that report and save it in notepad. Can anybody help? e.g I need to copy the text "LiFTER ASSY" only, but without exporting directly from…
Sagar Dev Timilsina
  • 1,310
  • 15
  • 32
7
votes
3 answers

Setting printer paper size in VB.Net for rdlc report

I built a report with a landscape orientation using VB.net 2010 and made the ​​size 16.5 cm * 8.25 cm When you print the report directly shows the size of the page A4 !!! I need to provide the printer with a custom paper size. How can I make my…
Hamzeh Khater
  • 81
  • 1
  • 1
  • 2
7
votes
2 answers

Create table without dataset in a rdlc report.

I'm developing a rdlc report in VS2010 and I need to add a table in the report, but this table has fixed text and doesn't need a datasource. But the report is giving an error because the table isn't related to a datasource. So my question is How do…
roma8716
  • 161
  • 2
  • 3
  • 7
7
votes
2 answers

How to render the formated text in the report.rdlc (with its format)

I store my data in formatted way in my db , I want some way to render the text with its format in my report.rdlc i use visual studio 2008 How to do this : For example : if my text like this :

text

It appears the same with tags in my report…
Anyname Donotcare
  • 11,113
  • 66
  • 219
  • 392
7
votes
3 answers

Default font for RDLC report

Is it possible to set default font in RDLC report ? I have report where i want to change font by I don't want to change it in every element of the report.
MichaelT
  • 7,574
  • 8
  • 34
  • 47
7
votes
7 answers

ASP.NET rdlc with external images not displaying images in PDF

I'm using the Microsoft ReportViewer that comes with ASP.NET and have a report parameter that should be setting the value (path) of an image in my report. I'm providing the path as a complete URL right now, starting with http:// but have also tried…
Jarrett Widman
  • 6,329
  • 4
  • 23
  • 32
7
votes
2 answers

How can I reuse one ReportViewer control for many reports with EF data sources?

I would like to stick with one single form and ReportViewer control, and at runtime assign various reports and data sources. The diverse and complex solutions to this revealed by a quick google check prompted me to rather ask here. How can I achieve…
ProfK
  • 49,207
  • 121
  • 399
  • 775
7
votes
8 answers

ReportViewer - modify toolbar?

Do anyone have good ideas of how to modify the toolbar for the WinForms version of the ReportViewer Toolbar? That is, I want to remove some buttons and varius, but it looks like the solution is to create a brand new toolbar instead of modifying the…
neslekkiM
  • 693
  • 1
  • 8
  • 19
6
votes
3 answers

Concatenate PDF files with PDFSharp return blank pages

I try to concatenate 2 PDF data from rdlc report. The problem is the result is blank pages. I don't know why, could someone help me please. here is my code: private ActionResult ConcatPdf(byte[] pdfData1, byte[] pdfData2) { MemoryStream ms1 =…
TaeV
  • 746
  • 12
  • 19