rdlc

difference between RDLC and SSRS

瘦欲@ 提交于 2019-12-04 19:07:57
问题 what is the difference between local/Web data reports (RDLC) and SSRS? 回答1: SSRS (SQL Server Reporting Services) is a part of some editions of Microsoft SQL Server (SQL Server Express with Advanced Services as well as the non-free verisons). It allows you to process server-side reports ( .rdl files). The ReportViewer control included in Visual Studio allows you to process client-side reports ( .rdlc files). It does not require SQL Server. Since both components use the same reporting engine,

How to show images on an RDLC report

此生再无相见时 提交于 2019-12-04 19:06:11
问题 I have an RDLC report and would like one of the columns in a table on this report to display images. The datasource for my report is a class that has a property called Image of type System.Drawing.Image . On my report I dragged an image control onto the column and I set the following properties: MIMEType: image/png Source: Database Value: =Fields!Image.Value When I run my report, I get a broken image. I'd really appreciate any suggestions! Thanks in advance :o) 回答1: I don't know if this is

Distributing RDLC output as an email attachment

那年仲夏 提交于 2019-12-04 13:53:42
问题 Our winforms application has long allowed a "print" option which basically uses RDLC. The customer has requested that we add a feature allowing users to send the "printed" output via email. Now, we know that an EMF file is created (in the TEMP folder) as a sort of hidden byproduct of our current printing process. Seems to us we can simply grab this EMF file and attach it to a new email and the job is done. Is this the best option? Can we rely on an EMF file be opened by any Windows machine?

Can Mono create/run reports in rdlc?

▼魔方 西西 提交于 2019-12-04 13:34:23
问题 I've never used mono and was curious if mono can create/run rdlc reports? What I'm looking at implenenting is a mono asp.net mvc app to use a rdlc to create a report and export to pdf. Is this possible with mono? 回答1: There are some open source projects which tried to implement RDL reporting in .NET: NReports: http://nreports.codeplex.com/ fyiReporting RDL Project: http://fyireporting.com/index.html ReportFu: http://reportfu.org/ ReportingCloud: http://sourceforge.net/projects/reportingcloud/

A data source instance has not been supplied for the data source 'Request'

妖精的绣舞 提交于 2019-12-04 12:45:34
I'm getting an error on my reportviewer which I am not sure how to correct this.... The error that I am gettings is : " A data source instance has not been supplied for the data source 'Request'." I have tried searching for this, but can't find anything that I can see that is wrong, can somebody please point me in the right direction? This is how my reportvierer looks like: <rsweb:ReportViewer ID="rptViewer" runat="server" Height="654px" Width="924px" Font-Names="Verdana" Font-Size="8pt" InteractiveDeviceInfos="(Collection)" WaitMessageFont-Names="Verdana" WaitMessageFont-Size="14pt">

Crash while adding DataSets to a RDLC Report

北慕城南 提交于 2019-12-04 07:42:45
When I try to add DataSets to any RDLC report within asp.net Project, Visual Studio takes some time (in wich it usually reads all compiled assemblies), and then suddenly crashes. It happens either in VS 2012 and VS 2013. In some other machines, it does not crash. But does show any elegible class/method to be used as a DataSet source. Please navigate to C:\Windows\Assembly and locate Microsoft.AnalysisServices.AdomdClient.dll to check the version number. For 2008 R2, it is 10.0.0.0 required. If no 10.0.0.0, install it by download Microsoft® SQL Server® 2008 R2 ADOMD.NET and running Adomd.NET

Why can't I see the “Report Data” window when creating reports?

狂风中的少年 提交于 2019-12-04 07:25:46
问题 I'm creating RDLC reports in VS10. When the program is NOT running, I can see the toolbox, and add controls to the report, but the "Report Data" pane is nowhere to be found, so I can't fill the controls on my report. However, if I run the solution, the "Report Data" pane appears, and I can drag fields on to my report, however the Toolbox contains no controls while I'm running. So, I've had to put the controls on to my report while not running, run the project and while it's running I can put

How to show dynamically generated datatable in reportviewer in asp.net?

∥☆過路亽.° 提交于 2019-12-04 06:44:24
问题 I've a ReportViewer(.rdlc) in my app. I want to show a datatable , which is generated dynamically from codebehind, in Reportviewer in Table object. How to do this? dataset has to be sent to report through codebehind. I Have My Code Behind file DataTable dt = Session["ReportOnUser"] as DataTable; if (dt.Rows.Count > 0) { ReportDataSource rds = new ReportDataSource("ReportOnUser", dt); ReportViewer1.LocalReport.DataSources.Clear(); ReportViewer1.LocalReport.DataSources.Add(rds); ReportViewer1

How can a delegate respond to multiple events with a generic and extensible class?

淺唱寂寞╮ 提交于 2019-12-04 05:29:59
I have rigged up a technique to handle multiple subreports in an rdlc report, but as I have tried to make it generic and repeatable, I have instead had to take the model and tweak it slightly for each case. For example, if I define an abstract interface, like such, I just cut and paste it from winform to winform as needed: abstract class ISolutionStrategy { public abstract void AlgorithmInterface(Int64 searchCriteria, SubreportProcessingEventArgs e); } First, I want to be able to bring this into each form by including an has-a object. I also want to encapsulate the behaviors of handling the

Visual Studio 2013 - Add Item > Report option missing

流过昼夜 提交于 2019-12-04 03:19:53
I want to create RDLC file in my C# project. ( http://msdn.microsoft.com/en-us/library/ms252067.aspx ) But I'm not getting Reporting item templates ( Report or Report Wizard ). I've got VS2013 Professional Edition so I assume it should have been there. I've also installed SQL Server Data Tools for VS2013 and I'm able to create New Report Server Project and add a report there. But that's RDL file, that's not what I'm looking for. I've tried devenv.exe /InstallVSTemplates with no luck. I'm not able to find these item templates online either (not sure if my company firewall is blocking anything).