crystal-reports

How to edit an existing query in crystal report

蓝咒 提交于 2019-12-21 09:12:05
问题 i just can see the SQL query at "Database"->"Show SQL Query". How do I edit it in Crystal Report? 回答1: You are looking for Edit Command within the Database Expert ... see the screenshot below. 回答2: Go to Database Fields >> Database Expert Select all the tables required for the report (Selected Tables section) Go to the tab: Links Drag and create all the links required to connect the tables links. Then you can right click on the link and select Link Options Here you can change your joins and

Very Odd situation with CrystalReport and/or Visual studio 2010 I don't know maybe .Net Framework

你离开我真会死。 提交于 2019-12-21 05:05:07
问题 I faced a very odd problem It seems very funny looks like some stuffs having a fun with me. I'm using Crystal-Report Version 13.0.2000.0 and Visual Studio 2010. Number of days ago I got a error related with my Crystal-Report, that was : Could not load file or assembly 'file:///C:\Program Files (x86)\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0\Common\SAP BusinessObjects Enterprise XI 4.0\win32_x86\dotnet1\crdb_adoplus.dll' or one of its dependencies. The system cannot find the

How to integrate SAP Crystal Reports in Visual Studio 2015 Enterprise Edition

本秂侑毒 提交于 2019-12-21 03:43:25
问题 I have downloaded VS 2015. I want to integrate SAP Crystal Reports in VS 2015 Enterprise Edition. I have also downloaded the MSI file of the latest SAP Crystal Report edition and installed it. However, I am not able to see the Crystal Report Viewer. 回答1: I had a very difficult time finding this particular download page and the appropriate download link on that page for Visual Studio 2015 (I also have Enterprise but I don't think that matters too much, if at all for this). The link is provided

Crystal Reports - Hide page header if there in no record on a page

我与影子孤独终老i 提交于 2019-12-21 02:41:48
问题 How to hide a page header if there is no record(details section) on last page. Page header must be shown on last page if there is some data on last page otherwise hide the page header. Formaula pagenumber = totalpagecount won't work as it will always suppress the last page's header. 回答1: Put this formula in a suppressed field in the detail section: WhilePrintingRecords; Global BooleanVar finished; finished := OnLastRecord And make this the Suppress formula in the page header: Global

Using Crystal Reports in Visual Studio 2005 (C# .NET Windows App)

笑着哭i 提交于 2019-12-21 00:05:22
问题 I need to create reports in a C# .NET Windows app. I've got an SQL Server 2005 database, Visual Studio 2005 and am quite OK with creating stored procedures and datasets. Can someone please point me in the right direction for creating reports? I just can't seem work it out. Some examples would be a good start, or a simple How-to tutorial... anything really that is a bit better explained than the MSDN docs. I'm using the CrystalDecisions.Windows.Forms.CrystalReportViewer control to display the

Why does Crystal Report Viewer always asks for login details to Access database on WePOS operating system?

守給你的承諾、 提交于 2019-12-20 19:45:11
问题 I wrote a report using Crystal Reports XI linked to an Access database here C:\MyData.mdb. The report has one field (simplified for this example) and no sub-reports. I have used the Forms and WPF Cyrtsal Report Viewer using C# .NET 4. The report views successfully on my development PC running Windows XP, and on other "tills", also running Windows XP. However, on a till running WePOS (a sort of cut down Windows XP) the report "always" shows a dialog box asking for login details i.e. Username &

SAP Crystal Reports Viewer does not display in browser

好久不见. 提交于 2019-12-20 10:56:15
问题 I own a ASP.NET web project with framework 4.5. Is installed and implemented an SAP report for VS2012 Crystal Reports Developer. Making in Local report, it works correctly in browsers (Chrome, Firefox, IE) and the data in the correct exit. Now, at the time of publishing (on another server) the first thing we did was install the same version of SAP, so that there are the necessary libraries etc.. The problem I have is that the block of Report Viewer, I mean, what is the repot container, not

Anyway to search inside a crystal report?

假如想象 提交于 2019-12-20 07:26:26
问题 We use to be able to use agent ransack to search all our crystal reports (.rpt files) for the use of a stored procedure. That was when we had Crystal 8.5. We now have Crystal 2008 and it doesn't seem to work anymore (change of format in rpt files?). Anyone know a utility that would be able do do this? 回答1: There's a good comparison of commercial .rpt management utilities here: kenhamady.com/reportmanagementutilities.pdf. However, these are mostly... "not very good", let's say, and very

Crystal Report: Display 0.00 for duplicate values

随声附和 提交于 2019-12-20 07:18:51
问题 I am making a crystal report which displays values from database. Now the values from db contains duplicate values. I need that duplicate values should be suppressed and should display 0.00 For Ex. Value 250.00 250.00 250.00 Should display 250.00 0.00 0.00 I have applied "Suppress Duplicate" to the column but don't know how to display 0.00 there. Thanks much! 回答1: Do not check Suppress if Duplicated. . You need to write formula for Display String . For example, if PreviousIsNull ({object

Transposing Row Data as Columns in Crystal Reports

孤街醉人 提交于 2019-12-20 06:19:04
问题 I have the following data returned from a stored procedure Staff Category Amount ----- ------- ------ Bob Art 123 Bob Sport 777 Bob Music 342 Jeff Art 0 Jeff Sport 11 Jeff Music 27 All Categories will always be returned for all Staff even is the Amount is zero What I want to do on my Crystal Report is output this:- Staff Art Sport Music ----- --- ----- ----- Bob 123 777 342 Jeff 0 11 27 I effectively want to Transpose the data in the Category rows as headers or columns in my report. I do not