reporting

How to concatenate values in RDLC expression?

半世苍凉 提交于 2019-12-04 02:47:01
问题 I have an RDLC file in which I want to make an expression. Here is the image of properties of expression. I need to concatenate First Name, Last name and Middle Init. 回答1: The following examples works for me: =Fields!FirstName.Value & " " & Fields!LastName.Value or ="$ " & Sum(Round((Fields!QTD_ORDER.Value - Fields!QTD_RETURN.Value) * Fields!PRICE.Value,2), "Entity_orderItens") Have a look at MSDN 回答2: Check this : http://blogs.msdn.com/b/mosharaf/archive/2005/12/20/localreportcustomcode.aspx

The print button doesn't appear in firefox

浪尽此生 提交于 2019-12-04 02:11:13
问题 Q: Why the print button doesn't appear in report viewer in the case of browsing through the Firefox ? How to show this button in this browser to print my report? 回答1: This is because the print button is an Active-X control and Active-X controls work only with Internet explorer For the rest of browsers export to pdf or excel and print from the application In case the entire report renders in one page, you can use the browser print button to print the report 来源: https://stackoverflow.com

How to generate/print reports on the client side

社会主义新天地 提交于 2019-12-03 21:53:28
问题 I'd like to know, if is it possible to generate and print a report ( using jasper report for example) on the client side? 回答1: They would have to have jasper report and java installed. I suppose you could push an applet to the client with all the necessary jars and stuff. Why would you do this? 回答2: This should be do with every (most) reporting solutions. You need a Java client that run as applet or Java applet or you render as PDF and print with the PDF viewer. 来源: https://stackoverflow.com

What are the Rave BE “reports in code” alternatives in a Delphi 2010 migration project?

为君一笑 提交于 2019-12-03 21:45:15
I want to migrate a Delphi 7 project to Delphi 2010. We are building "reports in code" with TReportShell and TDetailShell components from Rave BE. Those components does not exist any more in Rave BE 7.7. Moreover it seems that unicode support is broken in Rave BE ( Displaying unicode text in Rave Reports on Delphi 2009 ). What sould be the best solution to port this project to Delphi 2010 ? Reimplement the code written aruond TReportShell and TDetailShell to use the new TRvNDRWriter component ? Migrate to Fast Report ? Any other suggestion ? We provided an open source report builder, to be

Binding an rdlc report with a business object

白昼怎懂夜的黑 提交于 2019-12-03 21:38:35
Is it possible to bind a rdlc report to a business object (.NET 4/VS 2010) In my report I have TextBoxes called Name and Email. Say I have an object Person with properties Name and Email. Can I bind the .rdlc with an object Person at runtime? Yes it is, just create a new ReportDataSource: var people = new List<Person>(); var reportDataSource = new Microsoft.Reporting.WebForms.ReportDataSource {Name = "DataSet1", Value = people}; var report = new Microsoft.Reporting.WebForms.LocalReport(); report.DataSources.Add(reportDataSource); If you object has collection properties you can flatten the data

Microsoft.Reporting.* vs XML/XSLT

偶尔善良 提交于 2019-12-03 20:07:31
问题 I would like to add reporting capabilities to a .NET application. My data source is just the data model of the application, i.e. a bunch of objects that may have been generated or loaded from anything (not necessarily from a database). The initial plan was to generate a report data XML file from these objects, and then use XSLT to transform this into an XHTML report file. The report can then be shown in the application with a browser control. However, I've noticed that there exist Microsoft

Best way to view a table with *lots* of columns?

爷,独闯天下 提交于 2019-12-03 17:39:19
问题 At the risk of being downmodded, I want to ask what the best mechanism (best is obviously subjective for the practice violation inherent here) for viewing data from a table, using C#, with a lot of columns. By a lot, I mean something like 1000. Now before you get all click happy, or throw out responses like "why the hell would you ever have a table with that many columns" let me say that it's actually part of a design requirement. We are collecting data as fast as we can from 1000 data points

Very big data in mysql table. Even select statements take much time

梦想与她 提交于 2019-12-03 17:25:26
I am working on a database and its a pretty big one with 1.3 billion rows and around 35 columns. Here is what i get after checking the status of the table: Name:Table Name Engine:InnoDB Version:10 Row_format:Compact Rows:12853961 Avg_row_length:572 Data_length:7353663488 Max_data_length:0 Index_length:5877268480 Data_free:0 Auto_increment:12933138 Create_time:41271.0312615741 Update_time:NULL Check_time:NULL Collation:utf8_general_ci Checksum:NULL Create_options: Comment:InnoDB free: 11489280 kB The Problem I am facing that even a single select query takes too much time to process for example

PHP/MySQL reporting library [closed]

拜拜、爱过 提交于 2019-12-03 16:59:19
Is there a known good reporting library? Before I go making my own, I was wondering if anyone who has come up with a solution I can adapt to? Basically, I have a bunch of MySQL queries that I need to "report" on. So, my in-house solution would basically be a bunch of mysql queries that need to be run through a drop down or reporting style menu and they would run the queries requested and build a little report of whatever sql query that was run. Is there something out there that already does THIS, or should I just build something in-house? Take a look at phpreports . It sounds like what you are

Reporting Trend Line

大城市里の小女人 提交于 2019-12-03 16:29:40
How would you create a line in JasperReports that follows the trend for the data, in addition to showing the data points? Here are before and after shots: Before After The Time Series report does not appear to have any such option to draw the orange line. (The orange line should be smooth, and thinner, but that's the general idea.) Any ideas how to craft such a report with iReport 3.7.1? One solution requires the following items: BezierLineCustomizer to make the lines curved. RunningAverageIncrementer to calculate a running average based on a variable. iReport variable that uses the