report

How can I merge multiple TestNG suite results to one report?

拈花ヽ惹草 提交于 2019-12-11 01:35:17
问题 So here's an issue at my work. I've got a few TestNG cases that, if run within the primary batch of test cases, wreak havock throughout the other test cases. Rather than going through and changing all our test cases, I've made a group for the involved cases. I run the main test suite, excluding that group, and then make a second Ant call to run the affected group. This way all test cases pass, but I'm ending up having to create two TestNG reports so that the first one doesn't get overriden

Report Viewer in WPF

泄露秘密 提交于 2019-12-11 01:23:33
问题 I have a WPF project and I need to preview a crystal report. Is it possible to do this? I can't find a report viewer control in WPF project. thanks 回答1: You can use CrystalReportViewer of windows form with Windows form interop technology to add the viewer to your WPF applicaion. see WindowsFormsHost Class 来源: https://stackoverflow.com/questions/6635966/report-viewer-in-wpf

How to remove blank pages after each page in pdf view ( rdlc report )

耗尽温柔 提交于 2019-12-11 00:42:42
问题 I am using RDLC report in visual studio 2012. Report seems great when view in browser but in PDF view, blank page is attached after each report page.I have been to various links but they did not work for me.Any help would be appreciated. 回答1: Just decrease the size of your RDLC report page, it will not add additional page in PDF. (This answer is copy pasted from the comments and added as an answer because as it seem to fix the problem) 来源: https://stackoverflow.com/questions/38483181/how-to

Right reporting solution in a .Net environment

筅森魡賤 提交于 2019-12-11 00:29:44
问题 I have a reporting requirement in my web application for which I am looking for off the shelf solution. I don't have any experience of reporting softwares so thought of checking with SO community if anyone have any idea of reporting solution which fits my requirements. The application will be developed in .Net and apart from other functionalities, I need reporting capability. The look and feel of the entire app should look same. Is embedding a reporting software into a .Net application is

Why there is no oracle Forms or Reports decompiler ? (Technically)

与世无争的帅哥 提交于 2019-12-11 00:08:06
问题 I cant understand why I can't find such tool (oracle Forms or Reports decompiler) It's very valuable because many enterprises use oracle based systems. Does anyone know what's special in the .FMX or .REP format files structure that prevents building a decompiler for them ? 回答1: Given the $1.3bn award they just got against SAP for intellectual property infringement, Oracle are probably not the best people to pick on. Either a company has its own in-house developed systems, including source

Alternatives to Coldfusion Report Builder

旧时模样 提交于 2019-12-10 22:18:50
问题 Anyone know of a good solution for pdf generation (preferably with a visual layout tool) that I can use from ColdFusion instead of the CF Report Builder? It should be able to accept cfquery input. Basically is there anything better than the crusty Adobe offering out there? EDIT : With CF 11 and the "pixel-to-pixel" rendering of "most" CSS and HTML (see https://wikidocs.adobe.com/wiki/display/coldfusionen/PDF+Generation+in+ColdFusion+11), I wonder if anyone has attempted to do anything along

How can I show data in the header of a multipage SSRS 2005 report?

允我心安 提交于 2019-12-10 21:24:52
问题 This question was very helpful, however I have a list control in my report, and when the report grows over 1 page, data in the header only shows up on the last page of the report. Apparently, hidden textboxes have to be on every page of the report for header to function properly. How do I do that? The only control I have in the list is a textbox with bunch of text that grows way over 1 page. 回答1: Although SSRS does not allow us to use DataSet fields in page headers, it allows us to refer to

IsNothing not working on empty value in report builder

為{幸葍}努か 提交于 2019-12-10 19:59:40
问题 I have an expression in a table that checks if there was a return value. If the query returns empty or null I want to set the value to 0 . =IIF(IsNothing(Fields!DndCount.Value),0,Fields!DndCount.Value) But if the query returns empty IsNothing() does not work. 回答1: I have tried this code and it worked for me. IIF(Sum(Fields!DndCount.Value)Is Nothing, "0", Sum(Fields!DndCount.Value)) 回答2: Alternative solution to avoid using expressions, change the cell format to #,##0 in properties. Easier then

how to edit rdlc report without using visual studio

夙愿已清 提交于 2019-12-10 17:45:38
问题 I am now working on Sql Server Management Studio and Visual Studio C#. I created an Stored Procedure to retrieve data from tables in database. Using the result dataset , I created a rdlc report using visual studio report designer. I will install this software(software i am developing) in different systems in different locations. The problem is, the users may want to change the design(only the design, not dataset ) of the reports and I can't install visual studio on all those systems. So, I

SSRS How do I rotate between reports in a slideshow manner?

六月ゝ 毕业季﹏ 提交于 2019-12-10 17:18:31
问题 I have been tasked with creating a dashboard to be displayed on TV monitors. This dashboard has 5 different charts that need to be displayed in a slideshow manner - in other words, one chart at a time, rotating to the next over a timed interval. I used a solution posted on here with the visibility property =IIf(Second(Now()) >= 48 AND Second(Now()) <= 60, False, True) and so on with the report auto-refreshing at 12 second intervals. However, my manager came back to me with the feedback that