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
13
votes
7 answers

How to open RDLC in Design mode

In my project i have created .rdlc file in xml formate, i want to see my report but it's not showing in design view. How can i get this? Can any one please help me.
Indra
  • 279
  • 2
  • 3
  • 16
12
votes
3 answers

Set report (RDLC) as always landscape printing and A4

Is there a way to set an RDLC report to be always Landscape and to always use A4 without the need of manually doing so every time through the print dialog? I've been at this for a few hours and nothing came up after googling. Indeed, is there a way…
12
votes
3 answers

Base64 image doesn't display on Render PDF from RDLC report

I'm trying to display image(base64 string) using parameter(@CustomerSign) in RDLC report (I'm rendering PDF file from report and I'm seeing PDF file) I've configured image property as below: Select the image source : Database Use this field : …
Hina Khuman
  • 757
  • 3
  • 14
  • 41
12
votes
3 answers

Cannot add a Data Source in web project using the Data Source Configuration Wizard

Problem I want to add a Report (.rdlc) to my web projet. I need the report to use an object data source, not directly connect to a database. My issue is that when I run the "Report Wizard" or when I add a new Dataset to the report, the Data Source…
Chris
  • 2,009
  • 1
  • 16
  • 25
12
votes
5 answers

RDLC format number function

I have values in a db: 10.4 33 42.87 1.01 22.1 8 I know I can format numbers in my RDLC reports, however, how can I make sure that the output of the data will always be: 10.40 33.00 42.87 1.01 22.10 8.00 you will notice that I need to show two…
stoic
  • 4,700
  • 13
  • 58
  • 88
12
votes
1 answer

How do I force a report to always insert a page break?

I created a report in Visual Studio 2012 that has two report definitions. The main report section repeats once per vehicle, and it has a subreport that repeats once for each delivery that vehicle has. The main report design looks as follows: The…
Gustav Bertram
  • 14,591
  • 3
  • 40
  • 65
12
votes
3 answers

Prevent LocalReport.Render using Calibri Font Ligatures

I'm having an issue with an RDLC report printing empty characters when produced as a PDF. It only affects font ligatures which I understand to be letter combinations such as: ti ft fi tt My research shows these character combinations are combined…
m.edmondson
  • 30,382
  • 27
  • 123
  • 206
11
votes
2 answers

RDLC making call to obsolete SecurityAction Enumeration

I'm using Microsoft.Reporting.Webforms version 10 in order to parse an RDLC file and produce a PDF. The RDLC is a simple invoice with a couple of embedded expressions. When I run the application I get an exception that a call to the obsoleted…
m.edmondson
  • 30,382
  • 27
  • 123
  • 206
11
votes
3 answers

hide columns dynamically in rdlc report

How we can hide columns dynamically in rdlc reports in MVC 2? Is it is possible using external parameters? How we can programmatically control the visibility of columns in rdlc reports?
Null Pointer
  • 9,089
  • 26
  • 73
  • 118
11
votes
3 answers

How I can format date in report to appear exactly as I want - RDLC

I have a report in my application and this report will show a long date from db and I used this expression to make it shorter: =FormatDateTime(Fields!StatementDate.Value,DateFormat.ShortDate) and the date will show like this : 1/1/2010 I need to…
Saleh
  • 2,657
  • 12
  • 46
  • 73
11
votes
6 answers

RDLC - Adding a Data Source in VS2010

Greetings. I have an RDLC file and am wanting to add a data source to it, although without any luck so far. The data source is a custom class written by myself (just to add, we do this all the time). We recently converted over to the VS2010 RDLC…
Kieran Senior
  • 17,960
  • 26
  • 94
  • 138
11
votes
5 answers

Can't see or add Website Data Sources in RDLC report in ASP.NET MVC

In the RDLC report, in Design view in Visual Studio 2008, we don't see anything in the Website Data Sources tab and the button to Add New Data Source is grayed out. Only the Refresh button is enabled, and clicking it doesn't do anything. Our…
RobertC
  • 323
  • 1
  • 3
  • 12
11
votes
2 answers

Using .NET Class as the DataSource with SSRS RDLC

I have a MVC4 application in Visual Studio 2010 which contains plenty of classes. I'm trying to use them to pass in as the DataSource for a Report Definition Language Client (RDLC) file. But I can't access the classes from my assembly anywhere in…
KyleMit
  • 30,350
  • 66
  • 462
  • 664
11
votes
3 answers

child objects in rdlc (Studio 2010RC)

I am attempting to reference a sub-object in a field expression in a studio 2010 report. This used to work in prior versions. When account references another object with properties the following used to work. =Fields!Account.Value.Name (Name is a…
Jim
  • 14,952
  • 15
  • 80
  • 167
11
votes
3 answers

How to repeat table's header rows on each page in Reportviewer11 with Visual Studio 2010

I am trying to create some reports on ReportViewer 11 with VisualStudio2010. And I want to repeat table header in each page in export execl. I Set “RepeatOnNewPage” to “True” and “KeepWithGroup” to “After” in Row Groups list. But it still not…
user1430176
  • 111
  • 1
  • 1
  • 4