localreport

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 I was to print only, then I could execute two reports after each other, but since the user want to see the report before printing (you kno...

.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 MySqlConnection(Properties.Settings.Default.dbConnectionString); cmd.CommandType = CommandType.Text; cmd.CommandText = "SELECT ... LEFT JOIN ... WHERE ..."; /* query snipped */ // prepare data dat...

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 Microsoft.Reporting.WebForms.LocalReport report = new Microsoft.Reporting.WebForms.LocalReport(); report.ReportPath = Request.PhysicalApplicationPath + @"path\To\report...

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 contains the page count in a [x of y pages] format. Obviously I could run each report separately, but I need the page numbers to be across all...

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 show this type of control on a local mode report in the Web based Report Viewer? I have tried to set ShowParameterPrompts="true", but no ...

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" Font-Names="Verdana" Font-Size="8pt" Height="90%" Width="100%" OnReportError="ReportViewer1_ReportError"> </rsweb:ReportViewer> My class looks like ...

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 are in "(project root folder)/Reports/report.rdlc". How do I set ReportViewer.LocalReport.ReportPath so I can reference my report file? I ...

Add/modify CMap in existing PDF

I have an existing PDF document (generated by .NET LocalReport class). Unfortunately there is a problem with copy/paste, since it seems that there is no CMap/ToUnicode data there. Does anyone know how to add CMap to all fonts in existing PDF using iTextSharp? ...