rdlc

.rdlc reporting bound to Object Data Source in Three layer Application

Hi, i have the following situation, i have a Reporting layer(stand alone) in asp.net application(NOT website, this means NO App_Code folder exists), and i want just to create Object Data Source to take an Object in a separate layer(lets say from Data Access Layer), and then to use that Object Data Source to create a report, i have spent ...

rdlc Globalisation

I have a globalstrings.resx resource file in my solution which contains all of my key/value pairs for all static labels and tooltips. Everything in my web application has been globalized excepting for my .rdlc files. I've had a look at this solution - RDLC_Localization - but it does not solve the problem of globalizing the paging, filter...

Asp.Net MVC Populate RDLC Report to PDF Directly

Hi all, I've created a report using SQL Server Report Builder 2008. I was wondering if there were any examples out there on how to have this run in an Asp.net MVC App. I figured that setting the datasource and streaming it directly to a pdf file would be do-able, but i keep getting the following error when LocalReports Render Method is...

Visual Studio 2008 rdlc report - dual axis chart

Hi All, I am trying to find out if a visual studio rdlc local report cahrts can support 2 y axis. Is this possibel and if so how is it possible. I am happy to change chart types if needed. Thanks ...

Can I create a RDLC and databind a table at run time without creating dataset in design time?

Hi guys Just wondering if it's possible to databind a RDLC's table at run time. I've created a report, put a table control, but VS compiler says it's necessary to set a dataset. But I wanted to load data into this table using a dataset created in C# code, and not creating dataset and table adapter. Is it possible? thank you ...

RDLC, showing diffrent images/pictures on diffrent database values, c#

Hi, How can i show diffrent pictures based on a value in the databse in my rdlc report? for example, costumer - K1, wants picture1, while costumer K2, wants picture2. But i want this value insted to show a picture. My costumers is insterted into a table. And then sent to the rdlc. This is working so i can fetch the diffrent costumer nam...

RDLC, Dynamic Picture based on parameter, c#

Is it possible to add a dynamic picture to a paramter in rdlc? for example: =SWITCH(Parameters!picture.Value="1","picture1.jpg", Parameters!picture.Value="2","picture2.png") or something similar? or any other way to use the parameter's value to be the guide for the dynamic picture? ...

Save RDLC reports as PDF programaticaly

I have a report that I need to run multiple times and save as PDFs. I am currently generating the report as a PDF programatically but want to save the reports without the user having to choose the save option manually each time. The code I use to render a single report as a PDF is: Dim warnings As Microsoft.Reporting.WebForms.Warn...

What impact does the Z Index number have in an RDLC file?

I have been creating rdlc reports from scratch using C# to write xml files. To make sure I do this properly I look at the XML behind other reports I created using the VS 2008 report designer feature. When I look at the XML for the reports created using VS, I see the field called ZIndex which as a integer value associated with it. What...

Localization of Reporting Services-Reports (.rdl / .rdlc-Files)

Hallo, i need to localize a Reporting Services-report (.rdlc) and i would like to do it using a ressource-file (.resx). I found pages like this and that and they use custom code to achieve their target. But pages like Setting the Report Language Parameter in a URL give me the impression that localization in reports is possible without c...

"Operation could destabilize the runtime" Message when using RDLC

When running an RDLC, I get the following message displayed inside the report frame: Failed to load host assembly. Operation could destabilize the runtime. Does anyone have any idea which assembly is being referred to. Better still, where is there a seam I can check to figure out which assemblies are being loaded and which are not. I ...

RDLC Expression to convert seconds in hh:mm:ss

hi all, need a expression to convert seconds into hh:mm:ss to use in a texbox of a local report (ASP.NET with Report Viewer) ...

How can i access report's row count

Hi there. I want to write rdlc's row count to on page. How can i do that? Thanks ...

Does Visual Studio 2008 can produce/edit local reports(RDLC) for SQL Reporting Services 2008?

Is there way to edit local reports (RDLC) from Reporting Services 2008 with Visual Studio 2008? Now it says that Report element was not found (this is due different schemas). For me this question is actual, because I want provide my customer with ability to design or customize reports with Report Builder 2.0. ...

SubreportProcessing Event not Firing

I'm using rdlc reports in WPF, so have done so using WindowsFormsHost wrapper. The rdlc report I'm looking for run has a subreport embedded in it, and I'm setting the data source of that using the SubreportProcessing event of the ReportViewer. Viewer.LocalReport.SubreportProcessing += new SubreportProcessingEventHandler(LoadAccessories...

RDLC + ReportViewer Control - how to display images from the database?

I am storing GIF images (I can switch to BMP if necessary) in a varbinary column in SQL 2008. I want to display these images in a PDF rendered by the ReportViewer control from my RDLC. How do I have to reference the image data in the report to make that work? =First(Fields!sh_lot_num_barcode_image.Value, "DataSet1")) A simple field r...

VS ReportViewer RDLC - how to prevent a table from pushing down other items?

I have a narrow table on a report with 6 columns. The table has to hold 1 - 4 rows, depending on the data. I designed the report so that there is enough white space to accommodate 4 rows. I want to use the space on the right side of the table. When I place text fields there, they get pushed down by the table as it expands to show additio...

Converting RDL report to RDLC for use in MVC

Hi, I have an existing RDL report that I want to convert to an RDLC report for use in an MVC application. According the the MSDN Site the way to convert it is to rename the .rdl file to .rdlc, include it in the project and then use a ReportViewer control to select the datasource. Being MVC I don't have a ReportViewer control on my pa...

.NET ReportViewer capabilities: Displaying multiple rows

Situation: We've designed a decent looking Report page using the .NET ReportViewer (ASP.NET, RDLC) with a custom object from our object model. My underlying (and possibly incorrect) assumption was that if we bound a collection of custom objects to the ReportViewer/RDLC, the control would build a populated report layout for each object ...

WPF - view and RDLC report file

I have an extensive WPF application and I now want to incorporate some reports. I understand how to create the reports with RDLC but what about viewing them? Ideally, I'd like to use the DocumentViewer but I don't think that's one of the supported file types. Some articles have suggested using the ReportViewer, but I do not have that as ...