reporting

Nested table in Telerik reporting?

末鹿安然 提交于 2019-12-22 10:10:33
问题 I couldn't find any solution regarding this matter. If anyone use Telerik and have any idea about this please post. :) Currently I have an ojbect: Absence -> List<Available> Available I was successfully pass the List object to the main table and list out the Absence object. However when i try to do something like the ff, I have a mental block and I could not find anyway either on google or on their documentation ------------------------------------------------------------ | ABSENCE | --------

Looking for an alternative to JasperReports [closed]

孤人 提交于 2019-12-21 07:00:36
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 years ago . Some day ago my boss asked me that he wanted invoices in PDFs from out web application. Given that everybody uses JasperReports and iReport for design I tried it. My web app is based on Java+Hibernate and Spring. At the beginning Jasper seemed fine and iReport too. Anyway I've been stopped by two things: iReport

Binding an rdlc report with a business object

[亡魂溺海] 提交于 2019-12-21 06:51:56
问题 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? 回答1: 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()

PHP/MySQL reporting library [closed]

孤人 提交于 2019-12-21 05:24:08
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 years ago . 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

SSRS vs Azure SQL Reporting - Cost and Implementation

余生颓废 提交于 2019-12-21 04:28:49
问题 I have currently implemented some reports for a demo project using Azure reporting and Report builder. Now we are going to develop the reports properly I have a few questions about SSRS. We need subscription and scheduling so I guess we have to set up a SSRS server, can this be hosted on Azure or where is a good place? We have no servers of our own. What cost is involved for licensing? Our application is an MVC 4 app and I believe this may cause problems for hosting the report viewer (no post

How do I create an html report without hardcoding the html?

本秂侑毒 提交于 2019-12-21 04:26:09
问题 I'm currently refactoring a console application whose main responsibility is to generate a report based on values stored in the database. The way I've been creating the report up til now is as follows: const string format = "<tr><td>{0, 10}</td><td> {1}</td><td>{2, 8}</td><td>{3}</td><td>{4, -30}</td> <td>{5}</td><td>{6}</td></tr>"; if(items.Count > 0) { builder.AppendLine( String.Format(format, "Date", "Id", "WorkItemId", "Account Number", "Name", "Address", "Description")); } foreach(Item

How can I serialize a DevExpress XtraReport report design

走远了吗. 提交于 2019-12-21 04:23:07
问题 I need to serialize a report design. This is the scenario: The app has base reports, let's say "Sales Report" with a set of pre-defined columns and design, like the corp. logo in the header. The users needs to have the ability to change that layout adding, for example, a footer with the office address, or page numbers. For doing that they need to edit the report, enter the designer and add/change what they need. This changed report layout needs to be serialized to be stored in the database

Best Relational DataBase Representation Of Time Bound Hierarchies

青春壹個敷衍的年華 提交于 2019-12-20 09:47:33
问题 What in everyone's opinion is the best representation for a time-bound hierarchy in SQL? What I mean by this is: - On any given date you have a normal tree hierarchy - This hierarchy can change from day to date - Each child still only has one parent on any given date Day 1... Business | |-Joe | |-Happy | |-Sneezy | |-Doc(*) | |-Moe |-Bashfull |-Sleepy Day 2... Business | |-Joe | |-Happy | |-Sneezy | |-Moe |-Doc(*) |-Bashfull |-Sleepy At any time, a child can join the hierarchy for the first

Enterprise Reporting Solutions [closed]

偶尔善良 提交于 2019-12-20 08:25:01
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 6 years ago . What options are there in the industry for enterprise reporting? I'm currently using SSRS 2005, and know that there is another version

MS Access Print Report using VBA

徘徊边缘 提交于 2019-12-19 11:41:15
问题 I have a very VBA intensive report. When I preview it everything is great but when I print it after previewing things go wacky. I have spent many hours narrowing down the possibilities and I have conclude with a certain level of confidence that it is a bug in MS Access. Up to this point my method for printing reports was to open the report using docmd.openreport "report" . I then use the docmd.printout command so that I can set the page range, collation etc. Is there a way to print a report