Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
6answers
2k views

.NET DataTable skips rows on Load(DataReader)

I'm trying to populate a DataTable, to build a LocalReport, using the following: MySqlCommand cmd = new MySqlCommand(); cmd.Connection = new ...
3
votes
4answers
2k views

Getting the relative path to the rdlc report in my winform app

I am automatically creating a PDF from some of our reports in a month-end process. I am running into a problem where ReportViewer.LocalReport can't find my report. Within the project, the report files ...
2
votes
3answers
516 views

Best way in Converting DataGrid View to DataSet/DataTable

DataSet, DataTable and linq expression are common DataSource values of a DataGridView. Now in reverse, is it possible to pass/bind a DataGridView record to DataSet or DataTable? Thanks
1
vote
0answers
404 views

Rendering an RDLC report in HTML in ASP.NET MVC

I would like to render an RDLC report in HTML within an ASP.NET MVC project. I successfully made a prototype that renders an RDLC report in PDF, Excel, and TIFF image, with the help of this article. ...
1
vote
1answer
233 views

How to Attach image file in Local Report(RDLC)?

In Reporting Services Report(rdl) Image can be attached easily using Select the image Source and Use this image (Import) . But when i create a local Report (rdlc) the options on rdl is not provided. ...
1
vote
0answers
362 views

microsoft local report viewer in asp.net application

i want to view an object in the report viewer to be printed, the problem that i face when ever i bind the data source with the object the report viewer expressions sees only the top level properties ...
1
vote
1answer
1k views

Dynamically Setting up ReportViewer

I want to dynamically setup the ReportViewer at run time on a webform page. My ReportViewer looks like this on the aspx page… <rsweb:ReportViewer ID="ReportViewer1" runat="server" ...
1
vote
1answer
562 views

Is it possible to show the multiselect dropdownlist in a local report on Webform Report Viewer?

When designing a Reporting Services report, and creating a multi-value parameter, a nice dropdown list with the possibility to select one or many items appear in the parameter pane. Is it possible to ...
1
vote
2answers
2k views

ReportViewer - LocalReport - Merge reports?

I'm using ReportViewer WinForms, and since it is no easy way to create an coversheet, then I wonder, is it possible to render two reports and have them concatenated?, so they appear as one report? If ...
0
votes
0answers
10 views

Some dataset fields don't appear on RDLC report

I created dataset that contains Table View from SqlServer 2008 database. Then I created a report (rdlc) and added the previous dataset as a source for this report. In the code, I called a function ...
0
votes
1answer
40 views

Visual Studio LocalReport Object and ReportViewer

Is there a way to process a LocalReport object (got this part done) and get it displayed after, in a ReportViewer control, on another form? The idea is to print without the ReportViewer (already done) ...
0
votes
0answers
11 views

Empty localreport (rldc) using Dotfuscator

i created an application using an Dotfuscator, but what i don't understand is why my reports are giving me empty results, i excluded the struct classes that uses the localreport. What im doing wrong? ...
0
votes
0answers
146 views

How can I improve the performance of the LocalReport.Render method when exporting PDF from .rdlc in code?

I want to render big non-graphical reports (thousands of pages) in the code level, omitting the ReportViewer control that just jams the browser, from the .rdlc files. When I test to render a report ...
0
votes
0answers
49 views

Detect empty pages when printing with reporting services in local mode

I am printing .rdlc reports with the Microsoft.Reporting.WinForms.LocalReport and the Render method to EMF format. Some reports have filters on data sources. Sometimes these filters return no rows. In ...
0
votes
0answers
39 views

How to bind a table column to *.rdlc report's textbox in runtime? (C#.Net)

Can I bind a table column in a dataset to rdlc's textbox at runtime?
0
votes
1answer
24 views

Visual Studio 2005 table rendering order

I'm working in Visual Studio 2005 Reporting and I'm trying to implement a workaround of nesting aggregate functions (I need to perform a Count of Sums). In the table details row, I have a call to ...
0
votes
1answer
181 views

Printing localReport with only printer selection in C#

How can I print a LocalReport without preview but with a printer selection window? Thx.
0
votes
0answers
309 views

Add a LocalReport DataSource to a ReportViewer

I've got a custom object, but when I try to set the this.ReportViewer.LocalReport.DataSources.Add(myReportDataSource) it doesn't work at all. I'm having to use a Binding Source and map the fields one ...
0
votes
2answers
98 views

Is it possible to set an image on a Reporting Services Report from memory?

I am trying to figure out a way to programatically set an image on a Visual Studio Report where the image doesn't come from a file or from the database but from the running application. My best guess ...
0
votes
3answers
426 views

LocalReport (WebForms) and Partial Trust, for PDF Generation

My goal is to generate a PDF for display in a web page, either as aspx or with a generic handler. (This will link from a Silverlight page, but this is irrelevant to the problem.) The problem is that ...
0
votes
1answer
2k views

ReportViewer: Combine Multiple Reports into one report

I have a report that I need to run multiple times, with different data input each time. Each report has a page header that uniquely identifies it, the actual body of data, and then a footer that ...
0
votes
0answers
778 views

LinqDataSource does not work with Microsoft.Reporting.LocalReport

I´m trying to generate a report using a LinqDataSource, placed on a aspx page, and a LocalReport. The code speaks for himself: //Creating report ...