reportviewer

[java desktop application] Error code:-2147467259 Error code name:failed

when i try to show my .rpt report (Crystal Report XI file)in my java desktop application i've the following errors. when i call this method: try{ .... //some code that works correctly reportClientDoc.getDatabaseController().logon(USERNAME, PASSWORD); } catch(ReportSDKException ex) { System.out.print...

A reportviewer control bug to display unicode?

Hello everyone, I am using VSTS 2008 + C# + .Net 3.5 + ASP.Net + IIS 7.0 with reportviewer control. The report created by reportviewer control is very simple, just a single line of Chinese characters (I wrote the line of characters statically in a textbox control, no addtional dynamically generating or fetching from database). I upload...

Formating a line chart

I have a line chart in a report (rdlc), that I cannot get formatted correctly. There are 2 main things I am trying to accomplish. 1) The x-axis is a date, right now it is being displayed as the full date with time, and I want it to be displayed as mm/dd/yyyy. I have attempted to change this by using =FormateDateTime(Fields!EndDate.Val...

How to change the background color of cell containing subreport in RDLC report

I have an rdlc report containing two sub-reports in the same row (side by side). I am using alternating color for rows (setting background-color to "=iif(RowNumber(Nothing) mod 2, "Gainsboro", "White")") but when the one report is shorter than the other (a common occurrence), the background color of the cell containing the sub-report ha...

Error: Could not load file or assembly 'Microsoft.ReportViewer.WebForms, Version=9.0.0.0

I am getting this error that is related to ReportsViewer. I need to eliminate all references to this library. So where do I need to start deleting the references? Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your c...

Line Chart Report with 2 Different Scales?

I have a line chart with two lines in it. Sometimes the values between them differ by a hundred or more. That leaves the bottom line looking very flat. I want both of these to remain on the same graph but is there a way to have a different scale for each line? I was told that it is possible to have one (scale) on the left and one on ...

ReportViewer reporting from a DataTable

Hello! I was wondering if there was a way to design a report for ReportViewer from a SQL query. So from the SQL query I'd get all the data I need to make a report and then design the report in the designer? I am very new to ReportViewer and I am quite confused. Right now I can see I can populate the DataSet from a wizard, however as fa...

ReportViewer web control without authentication

I use ReportViewer web server control on a web page. The goal is to have a page that will allow anonymous access. I'm creating a dummy FormsAuthentication cookie that expires in 5 seconds and try to call the report. I also derive from IReportServerCredential and pass in Domain administrator's credentials to the report server. Weird thing...

VS 2010 ASP.Net ReportViewer

This is driving me bananas -- I've got a web app with an existing report being displayed by version 10 of the ReportViewer without a problem. We're expanding the site, and I've created a new report based an a second local business object (we're integrating with NetSuite web services). The page loads and requests the data, which is pass...

Microsoft.ReportViewer columns empty

Hey everyone, I have a report that is not showing 2 columns out of 3 per row for some reason. I tested the result set from the XSD and the data is correct but for some reason the two columns are not showing. The last column is showing properly and totally correctly as well. Whats showing Name Ongoing Closed Total xxx ...

How do you hide subreports (no whitespace) if they are in a reportviewer table row?

Hi, I've got myself a situation where I've got a bunch of different objects that all share some data fields in common. I want to have different subreports show the different details of these objects and a main table row showing the common stuff. I've found that I can't load different subreports programmatically, so I have to place every...

VS2010 ReportViewer Local RDLC Export To Excel Has Extra Emtpy Row on Bottom

When I export a Local RDLC from the ReportViewer to Excel there is an empty extra row appended to the bottom. So that when a user saves as CSV there is a row of commas on the bottom of the resulting csv. How do I keep the export from having the extra row on the bottom? ...

How to change the report's "document map" root label?

Technologies: .net 3.5, Visual Studio 2010, Report Viewer Control version 10, c# I am using adhoc reports in my winform application, now here is the problem: When my report is rendered in the viewer, the document map displays the report file name as the the root node of the document map. I need to display a more user-friendly descripti...

Filtering data in list in rdlc Reportviewer

I have two data sources in a rdlc report , in a list i am pointing to a data source ds1 but i need to filter data in ds1 using another data source ds2..? is there any way to filter data in a single report which uses two different data sources..? ...

SSRS ReportViewer Web Control - How to not show the "WaitControl" at all when rendering as Async?

I'm using the latest (2010) ReportViewer Web Control in an ASP.NET 4 project. My client wants me to suppress / hide the initial "Loading" message that gets displayed while the report is being fetched. Yeah... I know... why hide information that tells you what's going on? But, the client wants what the client wants. I know that if you u...

Need to add additional DataTables to RDLC

I need to add a second DataTable from our app's main DataSet into a report, but not having much luck. We have several simple local reports in RDLC files, each with a single DataTable based on a view in our application DB. I need to improve one of the reports to add information from another table. This other table is defined in the same ...

How to display a Table for IEnumerable property on a Microsoft Report

I've got a class with the following properties which I'd like to display on a Microsoft Report: Class: Sales Property Type DateOfSale DateTime TellerName String Purchase List(Of Purchases) The definition of the Purchases class is as follows: Class: Purchases Property Type Item String Quantity Integer UnitCos...

Where can I find documentation for RDLC xml?

I'm trying to find documentation on RDLC. Specifically I'm looking for the different Actions in a TextBox element. ...

How to access multiple interrelated tables in a dataset in rdlc report dataset

Hello Everyone , I am working on vs 2008 RDLC report, i need to use two table which are from a single store-procedure, when i am added a table adapter it is reflecting the first table, so how can i use the second table in the report.... ...

How To Handle ASP .Net ReportViewer OnDrillthrough Event In Client JavaScript Rather Than Server Code Behind

Hi everyone, I'm trying to handle the OnDrillthrough event for the ASP .Net Report Viewer control using JavaScript rather than in C# code behind. I've tried lots of different methods so far including adding a attribute in code behind: mainReport.Attributes.Add("drillthrough", "mainReportDrillthrough()'"); Also tried using the $addHa...