crystal-reports

Is there any way to print all pages of a Cross Tab Crystal Report through the .NET Crystal API?

We are printing our Crystal Reports via the Crystal .NET API PrintToPrinter method. Recently it was discovered that when printing Cross Tab reports (reports that span multiple pages horizontally), only the first page is printed and the other "virtual" pages are not. We can preview the Reports fine in the .NET Crystal Report Viewer contro...

Printing a crystal report in a loop using .NET

Hello all I have a crystal report named EmployeeDetails.rpt which prints all the details for a particular employee in a formatted way. Now i have new requirement, to print the same EmployeeDetails report for a list of employees.i.e For each employee in the Employees list. Print report EmployeeDetails.rpt End How can i realise the ...

How to pass stored procedure parameter values from vb6 application to show a report (made by crystal reports 8.5)?

Hi How Can I pass stored procedure parameter values from vb6.0 application to show a report (made by crystal reports 8.5) ? any help will be appreciated Below lines are what I have done but still have problem on showing the report: Private Sub FeedReport() Dim mobjReport as New CrystalReport1 Dim CRXParamDefs As CRAXDDRT.Par...

Dynamically add rows of data to a *.rpt file (C#)

Hello there. I am using vs2008 with CrystalReports and I'm wandering how can i dynamically add rows of data to a *.rpt file?(using c#). In more detail i want to create a a function that populates a *.rpt file with data that might contain lists(for example "FirstName", "LastName", List<"Friend"> ;..Friend beeing an object that contains ...

Static image in Crystal Report displays line on edge (not a border)

This is probably a long shot, but I have vague sense I ran across this many years ago so I'm hoping someone can help. I have a static image in a Crystal Report page header that acts as a letter head. Everything looks fine in the designer, but at run-time the image displays a black line along the bottom of the image. Kind of like a borde...

Crystal Reports error: cannot find CrystalDecisions.Windows.Forms version 10.2.3600

I am refactoring an old program to use VS2008 (instead of VS2005) and the 2003 Crystal Reports merge modules no longer work on the client machine. I am using the CR version bundled with VS2008. Neither the CR10 merge modules downloaded from the SAP site work, nor the CR x86 msi. Could not load file or assembly 'CrystalDecisions.Windo...

How to pass stored procedure parameter values from vb6 application to show a report (made by crystal reports 8.5)?

Hi How Can I pass stored procedure parameter values from vb6.0 application to show a report (made by crystal reports 8.5) ? any help will be appreciated ...

can we deploy an asp.net web application developed in windows in ubuntu

Hi all, We have developed a web application in windows using visual studio 2005. Is it possible to deploy that application in linux using crossover. Is it possible to run crystal reports in asp.net using crossover. I have used wine, and cross over and even mono. But it was not possible for me to develop crystal reports web application ...

Display the records in main report from sub-report

Hi i need to display the records of subreports which is generated from the table in horizontal instead of vertical. ...

PL/SQL Procedure and a crystal report

Dear All, I am trying to use the following procedure as a datasource for my crystal report. The query works as I expected but the problem is I can't figure out how to fetch back the data from those dummy tables - IFS_PR_DUMMY_TAB and IFS_PR_DUMMY2_TAB CREATE OR REPLACE procedure dummy9_IFS_FR2_Sales (cdate IN date) as acontract custo...

how to display entire report by giving values in a textbox using crystal reports in c#

this is my code .This is an application for generating reports in c# using crystal reports private void button3_Click(object sender, EventArgs e) { con = new OleDbConnection("Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:/Documents and Settings/techsoft/My Documents/Database.accdb;Persist Security Info=False"); con.Ope...

How to neglect this error in windows application using crystal reports

this is a formula that i have used to select records based on string array 'aa ' crystalReportViewer1.SelectionFormula = "({Table3.logindate} = '" + aa[i] + "')" for e.g aa[i]=aa[0],aa[1],aa[2] it will select only the records of aa[2] please give me a valuable solution ...

ASP.Net Crystal reports insert hyperlink

I have created a crystal report on VS 2005. I have also created a aspx page and inserted a crystal report viewer in it and linked it to the report I had created. Everything is working fine. But when I navigate through the report I have to click back button of the browser again and again so as to return to my original page. Is there a way...

Suppress Sections in Crystal Report

What is the use of suppress in Crystal Reports? Is it possible to delete a section (page footer) in crystal report? If yes, then what is the difference between Suppress and Delete? ...

How to display a picture in crystal reports 8.5 dynamically?

Hi Is there any way to show an image in crystal reports 8.5 dynamically? ...

MaxNBrowseValue In Crystal Reports 2008

Hello, We have a report with a parameter with dynamic prompt. This read entries from Item Master Table from the database. When running the report, only 500 or so item records are displayed in the prompt, though there are around 1500 records. Upon searching on internet, I came across some posts for older versions that there is a regist...

Autogenerate ReportClass for Crystal Report

I'm fairly new to Crystal Reports. I have recently taken over an ASP .NET project which contains some crystal reports. There are some .rpt files with corresponding .vb files. The VB files define classes which inherit from ReportClass. I have made a new Crystal report and added it to the solution, but I only have the .rpt file and I have ...

Crystal Reports "File Break"

I'm generating a Crystal Reports report which will ultimately need to be split into thousands of pdf files. What would be ideal would be if Crystal Reports had something like a "file break", like a page break, that you could insert into the file at the appropriate places. I will need reasonably fine control over the file names, as well....

crystal reports : substring error

I've developed a workaround since crystal reports doesn't seem to have a substring function with the following formula: right({_v_hardware.groupname}, truncate(instr(replace({_v_hardware.groupname},".", ","), ",")) What I'm trying to do is search for the period (".") in a string and replace it with a comma. Then find the comm...

crystalreports in vs2005

Hi. Guys I need to create a crystal report that shows the address label of the employee, By using crystal reports in vs2005 I had created the crystal report and connect to the data source and every thing goes fine and the report generated correctly, it displays like name father name address1 address2 ...