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

RDLC report keeps loading without showing data

I want to generate a rdlc report by manually populating values to dataset because I send the date as an input to the query. I use the following code to do that //my list get populated with the relevant records according to its date and I'm using…
user1450810
  • 173
  • 2
  • 6
  • 14
4
votes
1 answer

RDLC Dynamic Subreport Definition

Here's what I'm starting with. I have a report with a subreport in it. What makes this subreport unique is that the XML for the subreport rdlc is generated at runtime and the stream then provided to the report viewer. It was pretty much the only way…
Dan
  • 533
  • 8
  • 29
3
votes
3 answers

Format number Rdlc report

i need to show numbers 1 2 3 in Arabic letters i write in text box expression this statement =FormatNumber(Fields!Size.Value,1,-2,-2,-2) but i don't know it's parameter and which parameter can show numbers in Arabic format MANY THANKS
3
votes
1 answer

PageName property is missing in SSRS RDLC file

i am developing report with RDLC file type from VS2010 IDE but i found tablix member has no pagename property like so please tell me this property is really missing in rdlc file or it has another name. my intention was like export data to excel. if…
Thomas
  • 33,544
  • 126
  • 357
  • 626
3
votes
0 answers

How to add a rdlc group's totals row for an outer group's totals row

I have a 2-level group report (rdlc). The inner group (GroupA) has in its totals row, totals of all record values, except one value which is the same for all records and for which that is the value I need to show(let's call that X). So the totals…
user1012598
  • 417
  • 1
  • 8
  • 18
3
votes
2 answers

RDLC sorting on multiple columns

I want to sort an rdlc report by two or more columns. This could happen if I have two names that are the same so then it should next be sorted by ID column. When I navigate to textbox properties and click the interactive sort tab I can only select…
Clinton Ward
  • 2,441
  • 1
  • 22
  • 26
3
votes
1 answer

LocalReport.SetParameters Exception An attempt was made to set a report parameter 'ParameterName' that is not defined in this report

i have two buttons (button1, button2) the two buttons open two identical report except that report2.rdlc has a string parameter if i pressed button1 first the message box show parameters count = 0 (as expected) and i get report1.rdlc displayed in…
George Botros
  • 4,127
  • 3
  • 28
  • 50
3
votes
2 answers

RDLC Reports Proportional Image Alignment

I'm working on an RDLC Report ,I use a DB Image, and set it's size type to Proportional, if the image isn't the exact size as it's borders, borders won't fit .. this is ok, but the image will be aligned top-left according to borders while I need it…
Zero
  • 118
  • 3
  • 14
3
votes
2 answers

How to center the report title in RDLC file

I am trying to center the report title placed within report header on RDLC matrix report - this should have been quite straight-forward but I am struggling to achieve it. I am using VS 2010 (SP1) report designer to edit the RDLC. The report is quite…
VinayC
  • 47,395
  • 5
  • 59
  • 72
3
votes
1 answer

Error While Using Multiple Datasets in RDLC Report

I am creating RDLC report with two datasets. Earlier i was using one dataset and it was working fine,but when i added second dataset it started giving me following error for textboxes. Error 1 The Value expression for the text box ‘Textbox10’…
Amol Kolekar
  • 2,307
  • 5
  • 30
  • 45
3
votes
1 answer

Use two font in one expression in rdlc report

I have a report that it has one expression.In this expression I want to use two different font. For example I want to write "Hello. My name is Tavousi.". That Tavousi is in other font. Note that I want to use ONE expression. How to I can do this?
Tavousi
  • 14,848
  • 18
  • 51
  • 70
3
votes
2 answers

RDLC reports with ASP.net MVC 3.0

I'm trying to add business object data source for RDLC report in my MVC 3.0 application.However, it couldn't allow me to add object data source to my application. How I add object data source to my RDLC report ?
marvelTracker
  • 4,691
  • 3
  • 37
  • 49
3
votes
2 answers

How to display string representation of enumeration in rdlc with report viewer 10.0

I have converted several reports from the visual studio 2008 report builder format to the visual studio 2010 report builder format. This involved converting the .rdlc files and referencing the new report viewer assembly, version 10.0 (old was…
J Cooper
  • 4,828
  • 3
  • 36
  • 39
3
votes
1 answer

Autosizing ReportViewer in WPF?

I am designing a RDLC report in WPF. Naturally I am using WindowsFormsHost to host a ReportViewer object to display the report. However, since the length of the report, specifically, the height, of the report varies each time the report is…
tete
  • 4,859
  • 11
  • 50
  • 81
3
votes
0 answers

Criteria for object datasources to display in Visual Studio Report New DataSet?

In the "Report Data"..."New Dataset" dialog, I only have about 5 classes. None of my main business classes are showing up. Some that do show up don't show and properties. Some that show up are generic and there is not much point even showing…
Cade Roux
  • 88,164
  • 40
  • 182
  • 265