crystal-reports

Crystal Reports 8 for Visual Studio 2013

点点圈 提交于 2020-01-03 17:08:21
问题 Is there any way we can run the Crystal Reports 8 on Visual Studio 2013. I have a Vb.Net Project which was built using VS2008 + Crystal Reports 8. Now I am running Visual Studio 2013 Community Edition. but the project is not opening is because of Crystal Report References. I know there won't be any! for that ancient Crystal Report version but trying for a luck? Is it possible? 回答1: To integrate Crystal Reports development int Visual Studio 2013 you must use "SAP Crystal Reports, developer

SQL - Need to find duplicate records but EXCLUDE reversed transactions

一笑奈何 提交于 2020-01-03 15:36:18
问题 I have a table of transactions which will occasionally have duplicate entries. If/When an admin finds these duplicate entries, they will reverse the transactions, therefore creating a negative value (but the original duplicate still remains due to regulatory requirements). I'd like to create a SQL query (and use Crystal Reports) to make a report for the admins to easily find duplicate transactions. Due to the mass quantity of transactions, I'd like to make it easier for them by disregarding

Crystal Reports 10 Command Object Change Datasource Location

偶尔善良 提交于 2020-01-03 13:39:31
问题 I have used command objects in my Crystal Report and now I need to change the Data Source. I have followed the instructions found in KnowledgeBase Article c2016958 and downloaded, unzipped and applied cr10win_en.zip and dbex10win_en.zip but I still never get my connection updated. Has anyone else run into this issue? Were you able to solve it? I am running 64 bit Windows 7 and CR 10. Thanks, Leslie 回答1: I imagine it is the same process for CR10 as it is for CRXI and onwards: Go to 'Set

Crystal Reports “Load Report Failed” error running report on the server

雨燕双飞 提交于 2020-01-03 08:48:12
问题 I am getting error "load report failed" on server, it runs without error on localhost. I am using VS 2008 with .Net 3.5. This is my code: ReportDocument reportDocument = new ReportDocument(); String filePath = @"C:\abcSpaces\abc.com\xyz.com\wwwroot\Order Fulfilment.rpt";//full path // I have tried OrderFullfilment.rpt and ~/OrderFullfilment.rpt and /OrderFullfilment.rpt try { reportDocument.Load(filePath); CrystalReportViewer1.ReportSource = reportDocument; } catch(Exception ex){ Label1.Text

Crystal Reports Images not loading in ASP.NET MVC

一个人想着一个人 提交于 2020-01-03 02:28:12
问题 I'm using Crystal Reports in a Webform inside of an MVC application. Images in the reports are not being displayed, however, on both the ASP.NET Development Server and IIS 7 (on Win7x64). I know from a number of other questions similar to this that the CrystalImageHandler HTTP Handler is responsible for rendering the image, but I've tried all of the usual solutions to no avail. So far, I have Added the following to my appSettings (via http://www.mail-archive.com/bdotnet@groups.msn.com

Display Image in Crystal reports Using URL

雨燕双飞 提交于 2020-01-02 05:09:13
问题 I want to show image in a crystal report. Scenario is something like this. I have a database where my path of an image is persisting. eg ftp://Images/1.jpg Now i want to repeat this image in a crystal report. When i fills my datatable it shows me complete url. When i displays this field in GridView i uses imageBox to display my image and it works for me very fine. But when i tries to do the same with crystal reports, it starts me showing image path as it is. Now here instead of path i want an

passing parameters in crystal report

柔情痞子 提交于 2020-01-02 03:45:29
问题 I am creating crytal report from a stored procedure ,this works fine when i pass one parameter but it shows an error "incorrect parameter " when i pass two parameters my code is { ReportDocument reportDocument = new ReportDocument(); ParameterField paramField = new ParameterField(); ParameterFields paramFields = new ParameterFields(); ParameterDiscreteValue paramDiscreteValue = new ParameterDiscreteValue(); paramField.Name = "@Dept"; paramDiscreteValue.Value = TextBox1.Text.ToString();

Is there a report tool that allows users to create their own reports?

丶灬走出姿态 提交于 2020-01-02 03:34:30
问题 I have looked around a bit but I can't find a tool that fit my needs. What I need is a tool that allows users to create their own reports preferably from a web interface where the user is able to create charts, diagrams and tables . Therefore the tool needs to be able to handle several users and restrict the users to a certain database . I have looked at Crystal Reports and SSRS and neither of them seems to support what I want or am I missing something? 回答1: So, you're looking for a web-based

Crystal Report showing HTML text, but the bullets don't show. Why?

谁都会走 提交于 2020-01-02 03:27:15
问题 I'm getting data out of a SQL-Server nvarchar(3000) field, which is formatted as html, displaying it in Crystal Reports 11. The data is being saved as bullets, and if I pull out the data and drop it in a text file with an html extension, it shows the bullets. But from Crystal, it does not. I get the new line, but no bullets. The field that is saved looks like this: <HTML><BODY><DIV STYLE="text-align:Left;font-family:Tahoma;font-style:normal;font-weight:normal;font-size:11;color:#000000;"><DIV

Formatting a field using ToText in a Crystal Reports formula field

不羁的心 提交于 2020-01-02 02:15:11
问题 I'm trying to create a Crystal Reports formula field (to calculate the percentage change in a price) that will return "N/A" if a particular report field is null, but return a number to two decimal places using accounting format (negative numbers surrounded by parentheses) if it is not. The closest I have been able to manage is this: If IsNull({ValuationReport.YestPrice}) Then 'N/A' Else ToText({@Price}/{ValuationReport.YestPrice}*100-100, '###.00', 2) However this represents negative numbers