Convert Measurement in Crystal Report to CM or Inch

iirc, Crystal units are TWIPS (twentieth of a point) [http://en.wikipedia.org/wiki/Twip], 1 twip = 1/1440 inch, they are independent of the number of pixels on the screen; to find out how many twips wide your document is, you check the page size you setup on the report (in inches let’s say, then multiply by 1440). AndContinue reading “Convert Measurement in Crystal Report to CM or Inch”

Multiple Columns In A Crystal Report

Here’s how to create a sub-report within Crystal Reports containing multiple columns. This information applies to Crystal Reports version 9, but probably also applies to other versions. To create a multiple-column report ————————– 1. Open the report you want to format with multiple columns. 2. On the Report menu, click Section Expert. Tip: Another wayContinue reading “Multiple Columns In A Crystal Report”

Image in Crystal Reports

Download DempProject.zip – 20.5 KB Download sourcecode.zip – 13.4 KB Introduction This article will display the image in crystal report viewrBackground Using the code Simply open the source code in 2003.  Collapse | Copy Code try { // here i have define a simple datatable inwhich image will recide DataTable dt = new DataTable(); // object ofContinue reading “Image in Crystal Reports”

Crystal report with Dynamic Column

The objective of this article is to provide a process which can be followed to develop a crystal report with dynamic columns using parameterized column fields and formula fields. Before going for this the developer has to decide the maximum number of columns he/she has to display and as per the no. of columns the sizeContinue reading “Crystal report with Dynamic Column”

Adding watermarks to Crystal Reports

Here is the latest tip from the Flexible Solutions GP Reports Newsletter: how to add a watermark to your Crystal Reports.  I am going to demonstrate with an example. I have created a statement report, but it’s a little bland, especially when there are only a few lines of data to show: First step is to copyContinue reading “Adding watermarks to Crystal Reports”

Insert Watermark into Report Background

Text Watermark A common report request is the ability to add a watermark to a report indicating that it is a draft. This example will show you how to accomplish this. In order to create the watermark, create a new header section, add a text object for the watermark and select the “Underlay Following Sections”Continue reading “Insert Watermark into Report Background”