rdlc

.NET RDLC Report Matrices

I'm having a terrible time managing RDLC reports. I couldn't find any comprehensive tutorials in the internet and MSDN isn't as helpful as I wish it could have been either. Particularly, I've been having a problem trying to get a particular table/matrix to appear based on a client's requirement. It goes like this. In the DB I have two ...

RDLC (VS 2010) How to access nested class or arrays on DataObjects

How can I access the TD.SubNumber property and Numbers[] on RDLC? I keep getting #Error on my expressions "=Fields!TD.Value.SubNumber" and "=Fields!Numbers.Value(0)". public class TestData { TestSubData tdata = new TestSubData(); public TestSubData TD { get { return tdata; } set { tdata = value; } } ...

Custom .ToString() Formats in .rdlc Reports

I have a custom business object which overloads the .ToString() function. It also implements IFormattable.ToString, so I can define my own custom formats. This approach seems to work everywhere in my app, except .rdlc reports. For example, I have a text field on a report with the following expression: =Fields!MyField.Value.ToString("lr...

Giving custom text in the Y-axis, instead of numbers, in a Line Graph in Microsoft Report Viewer

I am using Microsoft Report Viewer RDLC to show a Line Graph. I need to give custom text like "Full", "Medium" etc instead of numbers as the y-aixs units. Is it possible to do this using Microsoft Report Viewer? ...

no page break in rdlc report

i want to see output of my rdlc report as a continuous report, not page by page, in my browser using reportviewer (just like as in pdf files). i don't want to click "next page" button every time to see next page of the report in my browser. ...

How to use listview as an Data source?

Hi, I want to use a listview as a data source of my Microsoft Report file which is having a rdlc extension ? Is it possible ? ...

How do I adjust overall width of rdlc report when some columns are hidden?

I have a customizable rdlc report where the user can choose which columns to show. All the columns are included in the report designer, and I use parameters to hide/show columns based on the user's choice. The report renders correctly, and only shows the selected columns, HOWEVER, the overall width of the report is the same as if all t...

How can I have a Visual Studio Report(.rdlc) with account information and also a chart in the same report?

I'm working on a report in Visual Studio 2008 with their Report tooling and I'm not sure how to approach this conceptually. I have a report I want to generate. At the top of the report will be a bunch of information about a customer of our site (Name, Address, Phone). Then below will be a chart of the purchases that customer has each m...

RDLC item width is dynamic and causing extra pages to be generated (image included)?

I'm trying to format an RDLC report file in Visual Studio 2008 and I am having a formatting issue. I have a list at the bottom that contains a matrix that expands horizontally to the right. That pink box is just to visualize the problem I'm having. When the report is rendered the matrix expands and instead of filling the pink box with ...

Problem sub-total Matrix with rdlc report in vb.NET

Hi everyone, I have a matrix and I need to add the money earned this year and past years. However, I must remove the money spent in past years. I must have the separate amount per year and the total of these amounts. This is what gives my matrix: Year = Fields!Year.value =formatnumber((sum(Fields!Results.Value))-(sum(iif( ...

dynamically setting the size of a textbox in a RDLC report

Can a textbox's width in a local RDLC report be set dynamically using C#? I would like to auto size the horizontal width of the text box based on the data it contains. ...

child objects in rdlc (Studio 2010RC)

Hi, 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 property of the child object, Account is the parent object) The same expression syn...

rdlc - phantom page break, what to check?

I have a RDLC report which has some controls on the first page, which are inside a rectangle and which display ok. Beneath the rectangle, i have a matrix, which spans more than one page both in width and in height. I want the matrix to start rendering on the second page. If I enable "insert break before" on the matrix, there is an extra ...

How to create filter option in RDLC report column ?

I wanted to have filter option (like the one available in Excel sheet) in rdlc report column. is it possible and how ? http://img62.imageshack.us/img62/2223/sample1n.png i am trying in Visual studio 2005 and Microsoft report viewer. kindly let me know the option for this or a work around for it. Thanks ...

Dynamically change Left and Top properties of Table in .rdlc file

Hi, How can I change Left and Top properties of Table control in a .rdlc file from code behind at Run-Time? ...

C# embedding images, reports, schemas

I've seen some examples, but trying to better understand how "Resource" files work, such as embedding images, reports, schemas, etc. If building an application, I want to make sure everything is available when deployed, but for things like reports and schemas, I don't want anyone accidentally deleting, renaming, or otherwise mucking aro...

Theoretically basic RDLC question

I'm trying to do something that I thought ought to be reasonably simple but I keep failing... Maybe I just need more coffee, but I thoguht i see if anyone else has solved the problem already. I've got a report, it contains a pile off rows. I want the row to show up grouped by one column called office. I want the groups of offices sort...

Can I add a Trendline to an RDLC report?

I have an RDLC report based on custom Data sets used in a WPF application. I have a Chart with a simple line chart. IS there a way I can add a trendline to this RDLC report? ...

Custom Report Items in local reports

Hi, i have read this article about custom report items(CRI) http://msdn.microsoft.com/en-us/magazine/cc188686.aspx The only problem is that CRI are only usable in reporting service and not in local reports. My question is it possible some how to use CRI in local reports( RDLC ). Also i am interested in which version of reporting service ...

How t have the RDLC pie chart show ranges instead of individual values

I have some data coming from a custom dataset that look like the following example Person Age P1 20 P2 21 P3 30 P4 31 P5 40 And I want to develop a pie showing the age distribution against the age. The point is that I want this Age to be shown in ranges. (20-29, 30-39, etc for example So we have: Slice wi...