rdlc

Producing a Form from an Overlay from Reporting Services rdlc Reports

I am not sure what you call it in other technologies, on the IBM i (or iSeries) we call it overlays. The overlay is an image of a form that is stored on the server then a program generates the form with fields from the database so you can eliminate preprinted forms. I had a problem last year with the method I was trying at the time. It ...

Visual Studio 2010 is asking to convert RDLC created on VS2008 to RDLC 2008 format?

I've created my project on Visual Studio 2008, as well RDLC files on it. But now, when I open the solution on Visual Studio 2010 and want to open RDLC file, it's showing me a warning. That's a little funny. The report was created on VS2008 and VS2010 is asking to convert to 2008 format. Perhaps there was a problem on my VS2008 instal...

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 business logic layer returns Lists of business objects and the business logic and business obje...

Does RDLC fire any events when binding to a datasource?

In Microsoft ReportViewer Web server control I have a report in RDLC that "binds" a table to a datasource. Are there any events fired that I can hook into on each cell/row so that I can programmatically set formatting properties for each row/cell in my c# code? ...

Asp.Net Impersonation Fails On First Try But Succeeds on Second

We are using RDLC's in a Asp.net web application. For reasons beyond our understanding, the first call to the database server fails with the following error: An error has occurred during report processing. Cannot open database "TryParkingIt2" requested by the login. The login failed. Login failed for user 'EXTRANET\OurServerNameHer...

Rdlc subt report, with group, if subreport, on new page, alwasy takes last row and puts it there too

So I have an RDLC, with a group and 2 subreports there are two details lines, for each "row" of info, then a group with a "subtotals for this region" subreport. then a report footer with a "all regions subreport" If the data in paired rows gets long enough that the "Subtotals for region" subreport goes to a new page, it take the last ...

convert objectdatasource into a datatable for rdlc report

Working with rdlc report for oracle procedures, the table adapter wizard will not work.How can populate a typed dataset with the result of Objectdatasource so that the fields from dataset can be droped into the rdlc report ...

How can use rdlc report with Oracle procedure ?

Can any one help to solve creating reports of rdlc using Oracle stored procedure. ...

Using an existing dataset with client reports in Visual Studio 2010

I am trying to use an existing dataset as the datasource for a rdlc report inside of an ASP.NET web application in Visual Studio 2010. However, when I go to choose the dataset in for the report, the existing dataset is not available unless it exists in the root directory of the application. This was not the case in the 2008 version o...

How to display middle value in a RDLC report where count equals 3?

I'm currently using an RDLC report and ReportViewer control to display a report to the user. The report needs to be formatted in a certain way so just creating a table and iterating through won't work. My database is set up to be pretty normalized. For example, two tables I have are a "PersonalData" table with a ID and a "PhoneNumbers" t...

How can I convert arbitrary strings to CLS-Compliant names?

Does anyone know of an algorithm (or external library) that I could call to convert an arbitrary string (i.e. outside my control) to be CLS compliant? I am generating a dynamic RDLC (Client Report Definition) for an ASP.Net Report Viewer control and some of the field names need to be based on strings entered by the user. Unfortunately ...

.NET ReportViewer- How can I put totals at bottom of each page

I have a created a report for payments and I need to be able to put totals at the bottom of each page such as the total number of payments, total balance etc. The rdlc designer will not allow me to reference Fields in the page footer? Thanks for the help ...

Getting a property from a class as a property of T in IEnumerable<T> for rdlc

I'm trying to use the DataSet from Entity Framework for RDLC. The entity is something like this: Department: DepartmentId Name Employee: EmployeeId DepartmentId -> FK to Department Name When I'm iterating the employees, is it possible get the department name? I've tried some things like =Fields!Department.Value.Name.Value or =Field...

Can i have a popup window in rdlc report using ajax

Can i have a popup window in rdlc report using ajax which disables the back page untill the popup is closed.? ...

How do I use only one DataSet for the RDLC report designer as well as for the ReportViewer?

When designing an rdlc report using the VS 2010 report designer, report items such as charts demand a dataset. After designing the report, I add a ReportViewer to a webform, and it demands all of its own datasources. How do I hook up the DataSet I have coupled to the report without duplicating the DAL functionality in the viewer page? ...

How to run a rdlc using coding.

I have created an rdlc where i have used dataset taken as a new item in solution explorer for designing my report. After binding my report from that datasource which is named as Dataset1. I have created its object and tried to fill this datasource using coding. Now when i runs the folowing code i am not getting any result. What can be ...

RDLC Detail pairs

in and RDLC, on a table each row of info is displayed as two RDLC details rows. ie Bob 1234 bobo st 512-512-5122 Jones Austin Tx, 78660 512-512-5133 but when paginating the report, the data pairs get split, with "bob" on one page and "Jones" on another. Is there any way to force the RDLC Generator to keep these pairs on th...

RDLC Export Local Report To CSV

In Visual Sudio 2010 ASPX ReportViewer Control the only export options are: Excel, PDF, and Word. How can I export the report to CSV. I understand that SSRS reports can do this, but in my situation this is not a possibility. ...

MSBuild Using Wrong Version of Assembly to Compile RDLC File

I am using the reportviewer control from VS 2010 to create client side reports (rdlc). Everything is working fine on my development machine, and when I manually compile (via VS2010) and manually deploy to a test machine that doesn't have development tools installed. In order to get the test machine to work (without installing VS2010 or...

how to show data column-wise in rdlc local reports

I have an WPF application which has a local rdlc report which show receipt based selling of the day. As this query have 4 columns (MemoNo, Gross, Discount, NetSales) and rows more than 1000 so its not a good idea to show data row-wise as it will waste more space per page. Is there any way to show data in column-wise so. MemoNo Gross ...