report

asp.net - Generate Powerpoint file on the fly

可紊 提交于 2020-01-01 08:34:52
问题 I have a client of my web based application who heavily uses the data from our system for powerpoint presentations. We currently allow data to export in more traditional file types...PDF, CSV, HTML, and a few others. Powerpoint doesn't seem to be really automated. Is there a way, on the ASP.NET server side, to automate the creation and on-demand download of a powerpoint file format for a report from a system? 回答1: In this article, Steve suggests using Aspose's Slide application. He also

How do I combine multiple BIRT reports

瘦欲@ 提交于 2020-01-01 06:51:42
问题 We currently have a whole suite of report designs that cover various parts of our app, and these reports are generated on demand by our users. I want to be able to bundle up several of these reports into a single report to return to the user. I initially hacked up a custom report builder that generated report design files using segments inside a report library file, and then ran that generated design, but this was unwieldy and a pain to manage as I had to duplicate the individual reports

Viewing Code Coverage Results outside of Visual studio

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-31 09:16:16
问题 I've got some unit tests, and got some code coverage data. Now, I'd like to be able to view that code coverage data outside of visual studio, say in a web browser. But, when I export the code coverage to an xml file, I can't do anything with it. Are there readers out there for this? Do I have to write an xml parser and then display it how I want it (seems like a waste since visual studio already does this.) Seems kinda silly to have to take a screenshot of my code coverage results as my

Document.NewPage() not adding new page

时光怂恿深爱的人放手 提交于 2019-12-31 04:28:26
问题 I am trying to add a new page to a pdf document, however for some reason this is not happening. Maybe my other question https://stackoverflow.com/questions/11428878/itextsharp-splitlate-not-working has something to do with this since the table in this question does not break and no new pages are created. This is the code I have for the adding of new pages: Document doc = new iTextSharp.text.Document(iTextSharp.text.PageSize.A4.Rotate(),20,20,20,40); string rep1Name; // variable to hold the

Rounding numbers in Crystal report

烈酒焚心 提交于 2019-12-31 03:14:09
问题 I have database table which i want to generate a Crystal report for it just to show the numbers as it is e.g i have 11.7 i want it to remain like 11.7 while it round to 12. I don't want this rounding . please help! 回答1: It is very simple, just select the field to which you want to show two decimal places. Right click on the field go to format field-->go to number tab -->click on customize-->then in Decimal select "1.0". http://www.crystalreportsbook.com/Forum/forum_posts.asp?TID=9338 Second

Not getting report of TestNG in ReportNG

心已入冬 提交于 2019-12-30 10:36:06
问题 I am executing testng in eclipse and I want generate the report in reportNG. For that I have inlcuded guice-3.0,reportng-1.1.3,velocity-dep-1.4 jar files and added listeners in xml file Also I have disable the default TestNG listener in eclipse. After all that I am not getting the report in ReportNG. What else I have to do? This is the xml code.... <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd"> <suite name="Registration" verbose="1" preserve

How to generate a report in excel (xls, xlsx) format on ODOO?

南楼画角 提交于 2019-12-30 10:23:09
问题 In purchase module, I want to generate the details which is being printed in the purchase order button as a pdf report. My requirement is how to print the report in excel format in odoo 10? 回答1: You can export the current tree view as an excel file with this module: web_export_view Or you can build your own excel report with this other modules: report_xls report_xlsx There are modules that already use the report_xls module, but you can look for them in the Odoo Apps or in the OCA repository

How to set PDF name in qWeb report, Odoo?

和自甴很熟 提交于 2019-12-30 08:40:10
问题 I'm making reports using qWeb in Odoo 8. Those generated PDF files are saved with a "default" name. I would like to set a specific name to every generated file (not after file was saved, but in "generation" time). Is that possible? If it is, how to do it? Thanks in advance. 回答1: In Odoo 8 you can patch the method report_download of addons/report/controllers/main.py like below (between FIX START and END). It will then use the code for the attachment attribute in the report action definition.

Any easy way to generate a Findbug HTML report from Maven without site:site?

◇◆丶佛笑我妖孽 提交于 2019-12-30 04:06:31
问题 I am trying to integrate FindBugs in a maven project. Does anyone have a sample pom.xml generating a simple findbug HTML report in target? Is it possible to generate this report without having to run site:site ? 回答1: Check out Sonar. It's an open-source, stand-alone, web service that you "submit" your code to and it produces beautiful HTML reports on all kinds of code metrics. It also keeps a history of builds. And best of all, you don't have to modify your builds or poms! There is a maven

R Knitr PDF: Is there a posssibility to automatically save PDF reports (generated from .Rmd) through a loop?

混江龙づ霸主 提交于 2019-12-28 05:47:44
问题 I would like to create a loop, which allows me to automatically save PDF reports, which were generated from a .Rmd file. For instance, if a variable "ID" has 10 rows, I would like R to automatically save me 10 reports, into a specific directory. These reports shall vary based on the ID selected. A previous post (Using loops with knitr to produce multiple pdf reports... need a little help to get me over the hump) has dealt with the creation of multiple pdf reports generated from .Rnw files. I