FastReport VCL 6
FastReport VCL 6
FastReport VCL 6
User's Manual
Table of contents
Chapter I Designer 2
1 Control
...................................................................................................................................
keys 3
2 Mouse
...................................................................................................................................
control 3
3 Toolbars
................................................................................................................................... 4
Designer m.........................................................................................................................................................
ode bar 4
Standard toolbar
......................................................................................................................................................... 4
Text toolbar......................................................................................................................................................... 5
Fram e toolbar
......................................................................................................................................................... 6
Align toolbar
......................................................................................................................................................... 7
4 Designer
...................................................................................................................................
options 8
5 Report
...................................................................................................................................
settings 9
6 Page
...................................................................................................................................
options 12
23 Headers
...................................................................................................................................
and footers of a data band 49
24 Multi-page
...................................................................................................................................
reports 51
25 RowCount
...................................................................................................................................
and PageCount properties 52
Chapter VI Script 79
1 A Taste
...................................................................................................................................
of Script 79
2 Structure
...................................................................................................................................
of a script 82
3 "Hello,
...................................................................................................................................
World!" script 84
4 Using
...................................................................................................................................
objects in the script 84
5 Calling
...................................................................................................................................
the variables from the report’s variables list 85
6 Referencing
...................................................................................................................................
the DB fields 86
7 Using
...................................................................................................................................
aggregate functions in the script 87
8 Displaying
...................................................................................................................................
a variable’s value in a report 87
9 Events
................................................................................................................................... 87
10 Example
...................................................................................................................................
of using the “OnBeforePrint” event 89
11 Printing
...................................................................................................................................
a group sum in the group header 91
12 “OnAfterData”
...................................................................................................................................
event 95
13 Service
...................................................................................................................................
objects 96
“Report” object
......................................................................................................................................................... 96
“Engine” object
......................................................................................................................................................... 97
“Outline” object
......................................................................................................................................................... 98
14 Using
...................................................................................................................................
the “Engine” object 99
15 Anchors
................................................................................................................................... 102
16 Using
...................................................................................................................................
the “Outline” object 103
17 “OnManualBuild”
...................................................................................................................................
page event 107
18 Creation
...................................................................................................................................
of objects in the script 111
3 The
...................................................................................................................................
"Map" object editor 155
Adding m.........................................................................................................................................................
ap layers 156
Setting up
.........................................................................................................................................................
the layer appearance 157
Setting up
.........................................................................................................................................................
label display 158
Connecting
.........................................................................................................................................................
the m ap layer to data 158
Highlighting
.........................................................................................................................................................
data using colors 160
Highlighting
.........................................................................................................................................................
data using size 162
2 Changing
...................................................................................................................................
a base report 200
3 Inheritance
...................................................................................................................................
control 201
I
Designer
2 FastReport VCL 6 User's Manual
The report component is supplied with an embedded visual report designer, which can be
opened at design-time by double-clicking on the TfrxReport component. The designer provides
the user with all the tools necessary for designing and previewing reports. The designer’s
interface meets current requirements. It contains several toolbars, which can be docked
wherever wanted. These toolbar locations are restored every time the designer is opened.
Toolbar locations, together with other designer settings, are stored in the registry or, should one
be assigned, in an ini-file.
To give the end user of your project the ability to design reports, you should either place a
“TfrxDesigner” component from the FastReport component palette onto a Delphi form or add the
“frxDesgn” unit to the unit's Uses list. Using the designer at run-time allows the user to change
the report’s appearance, as well as to edit the finished report.
Note: you should also place any other Tfrx components that will be used on the Delphi form.
1.3 Toolbars
Underline (toggle) toggles font Underline style of “Text” object's content on/off
Font Settings opens Font settings dialogue
Font Color drops down font color selection grid
Highlight opens highlight dialogue
can set a condition for highlighting
Text Rotation changes text rotation from drop-down list
Align Left left aligns text within “Text” object's frame
Align Center centre aligns text within “Text” object's frame
Align Right right aligns text within “Text” object's frame
Justify justifies text within “Text” object's frame
Align Top top aligns (vertical) text within “Text” object's frame
Align Middle middle aligns (vertical) text within “Text” object's frame
Align Bottom bottom aligns (vertical) text within “Text” object's frame
Note that some buttons will be active when more than one object is selected.
Icon Description
show Grid (toggles on/off)
align to Grid (toggles on/off)
fit to Grid
align left edges (to first selected object)
align horizontal centres (to first selected object)
align right edges (to first selected object)
align top edges (to first selected object)
align vertical centres (to first selected object)
align bottom edges (to first selected object)
space equally in horizontal direction
space equally in vertical direction
individually centre each object horizontally in band
individually centre each object vertically in band
set equal widths (same as first selected object)
set equal heights (same as first selected object)
Here you can set the preferred units (centimetres, inches, pixels) and grid spacing. Tip: you can
also cycle through the units from within the designer by double-clicking on the left part of the
status bar where the current units are displayed.
You can set grid visibility and alignment to grid. This can also be done via buttons in the
“Standard” toolbar from within the designer.
You can set a font for the code editor window and for the “Text” object editor. If the “Use object's
font settings” option is enabled, the font in the text editor window matches the font of the object
being edited.
The default white background of the designer workspace and tool windows can be modified via
the “Workspace” and the “Tool windows” buttons.
The “LCD grid color” option increases contrast of the grid lines a little and improves their visibility
on LCD monitors.
The “Show editor after insert” option controls what happens when new objects are inserted. If
the option is enabled, its editor will be displayed each time an object is inserted. When creating a
large number of blank objects, it is recommended to temporarily disable the option.
Disabling the “Show band captions” option hides band captions, so saving some space on a
design page. When disabled, the band captions are shown inside the band workspace.
The “Show drop-down list of fields” option controls whether the drop-down list is accessible
when pointing with the mouse to “Text” objects which are connected to data fields. This may be
necessary if there are many narrow “Text” objects in a band
The “Free band placement” option disables snapping of bands to the page. This option is
disabled by default and bands are automatically grouped on the page according to their function.
The gap between bands is set in the “Gap between bands” field.
On the first page you can see the general settings for the report:
You can tie a report to one of the printers installed in the system. This means that the selected
printer will become the default when printing that report. This might be useful in cases where
there are several different printers in the system; e.g. text documents can be tied to
monochrome printers, while documents with graphics tied to color capable ones. “Default” is
listed in Printer settings - when this is selected, the report will not be tied to any particular printer
but will be printed on the system's default printer.
You can also set the number of report copies to be printed and whether to collate the output. The
value set in this dialogue will be shown in the “Print” dialogue when printing the report.
If the “Double pass” flag is checked report generation will be performed in two steps. During the
first pass a draft report is created and divided into pages, but is not available for preview. In the
second pass the draft report is converted to a standard report which is then saved in the preview
stream.
Why are two passes necessary? Mostly this option is used in cases where a report needs
access to the total number of pages in the report, i.e. for use as “Page 1 of 15”. The total
number of pages is calculated during the first pass and is made available via the
“TOTALPAGES” system variable. The most frequent mistake is to attempt to use this variable in
a single-pass report, when the variable will return 0.
Another use for two passes is to perform some calculations in the first pass and display the
results in the second pass. For example, when a sum is to be displayed in a group header
instead of in the usual group footer. Calculations of this type are accomplished by writing report
script code in the “OnBeforePrint” event of an object.
The “Print if empty” flag allows creation of a report containing no data lines. If this option is
The “Password” field enables the setting of a password, which must be entered before a report
can be opened.
On the second page you can set up the report inheritance options:
You will learn about inheritance later in the “Report inheritance” chapter. In this dialogue you can
see the base report's name (if the report is inherited), detach the base report (in which case
your report will be standalone and non-inherited) or inherit the report from one of the available
base reports.
The third page of the dialogue allows you to set descriptive properties for the report:
All fields on this page are for information purposes only and are not printable.
On the first dialogue page, you can set the size and alignment of the paper as well as the
margins. In “Paper source” the drop-down lists allow selection of printer tray for the first page
and for the rest of the report pages.
On the second dialogue page, you can set the number of columns for multi-column reports. The
current settings are also displayed in the designer.
The “Print to previous page” flag allows you to print pages without starting a new page, instead
beginning in any blank space on the previous page. This option can be useful when a report
template consists of several pages or when printing batch (composite) reports.
The “Mirror margins” option switches the right and left margins of even-numbered pages during
previewing or printing of a report.
The “Endless page width & height” options increase page sizes depending on the number of
data records on the page (when the report is run). When set the report will appear on one big
page in the preview window instead of on several standard size pages.
The “Large height in design mode” option increases the page height in the designer. This feature
can be useful if there are many bands on a page: it must be used when working with overlayed
bands. It only effects the page height in design mode.
II
Creating reports
16 FastReport VCL 6 User's Manual
- “Band” object : an area on a design page which behaves according to its type (e.g. Header
band, Data band)
- “Text” object : displays one or more lines of text within a rectangular area
- “Picture” object : displays a graphic file in “BMP,” “JPEG,” “ICO,” “WMF” or “EMF” format
- “Line” object : displays a horizontal or vertical line
- “System text” object : displays either system information (date, time, page number, etc) or
aggregate values
- “Subreport” object : allows insertion of another report design page within the host page
- “Draw” category objects : displays various geometrical shapes
(diagonal line, rectangle, rounded rectangle, ellipse, triangle and diamond)
- “Chart” object : displays data in various chart formats (pie chart, histogram, etc.)
- “RichText” object : displays text in Rich Text Format (RTF)
- “CheckBox” object : displays a checkbox with either a tick or a cross
- “Barcode” object : displays data as one of several barcode types
- “OLE” object : displays any object using OLE technology.
The basic objects most commonly used are the “Band” and “Text” objects. You will learn about
their capabilities in detail later in this chapter.
The text editor window will be opened right away; if it does not appear automatically then double-
click the object. Text editor opening can be configured in the designer settings - see later on.
Type in “Hello, World!” and then click the ОК button.
The report design is finished. To preview the report either select the “File>Preview” menu item
or click the corresponding button in the toolbar. The preview window containing a report page
with the “Hello, World!” text will appear. This report can be printed out, saved to a file (*.fp3), or
exported to one of the supported export formats.
Now let’s look at other features of this basic object. As an example, let's create a new "Text"
object to display two lines of text:
Enable the object frame from the toolbar and re-size the object up to 9x3 cm using the mouse.
We see that the object can display not only a single line but also several lines of text. Now
reduce the object width to 5cm. It is obvious that long lines did not fit across the object and were
therefore wrapped. This is controlled by the “WordWrap” object property. If it is disabled (either
in the object inspector or via the object context menu) any long lines will be simply cut short.
Now let’s see how text alignment inside the object works. Alignment buttons are located in the
“Text” toolbar and control horizontal or vertical text alignment. Note the “Justify” button which lets
you align paragraphs to both object edges - to do this “WordWrap” must be enabled.
All the text in the object can be rotated to any angle in the range 0..360°. The button in the
“Text” toolbar allows you to quickly rotate the text to pre-sets of 0, 45, 90, 180 or 270°. For any
other value set the required angle in the “Rotation” property of the object inspector. When
rotating text to angles other than 90, 180 or 270° the text may be cut off by the frame of the
object, as shown below. To cure this increase the object height a little so that all the text fits
within the object.
Let's briefly look at some other “Text” object properties which influence its appearance. Most of
these properties are available only in the object inspector:
Please note that only a few tags are supported, but this should be enough for the majority of
applications. It is not possible to modify the font size or name by means of HTML tags.
How does this happen? When FastReport creates the report and encounters an expression
enclosed in square brackets the report engine calculates the expression's value and inserts this
value into the text in place of the expression. “Text” objects can contain any number of
expressions mixed in with the normal text. Complex expressions can contain brackets (for
example [1+2*(3+4)]). Constants, variables, functions and DB fields can all be used in
expressions. We will learn more about these later in the chapter.
FastReport automatically recognizes expressions enclosed in square brackets in the text. But
what happens if our normal text contains square brackets which we do not want to be
considered as expressions? For example, if we need to display the following:
a[1] := 10
FastReport would consider [1] as an expression and display the text as:
a1 := 10
which is not what we want, of course. One way to avoid this happening is to disable expression
recognition. Disable the “AllowExpressions” property (or “Allow Expressions” in the context
menu) and all expressions in the text will be ignored. In our example, FastReport would then
display exactly what we need:
a[1] := 10
But sometimes text is required to contain both an expression and normal text with square
brackets, for example:
a[1] := [myVar]
Disabling “AllowExpressions” lets us display square brackets in the required places, but it also
disables handling of expression. In this situation FastReport allows you to use an alternative set
of symbols to designate expressions. The “ExpressionDelimiters” property, “[,]” by default, is
responsible for this. In our example we can use angular brackets for the expressions instead of
square ones:
a[1] := <myVar>
The “<,>” value must be set in the “ExpressionDelimiters” property, where the comma is
required to separate the opening and closing symbols. Another requirement is that the opening
and closing symbols cannot be identical, so “%,%” will not work. Complex symbols can be used,
for example “<%,%>”. So our example could look like this:
a[1] := <%myVar%>
Open the FastReport designer and click the “New report” button in the toolbar. You will see a
report template which already contains three bands: “ReportTitle”, “MasterData”, and
“PageFooter”. Let's remove the “MasterData” band for a while (click either on any free space
inside the band or on its header and remove it with the “Delete” key or "Delete" in the context
menu). Now let's add a new band (“PageHeader”). Click the “Add band” button on the object
toolbar and select “PageHeader” from the drop-down list. We see that a new band is added to
the page. At the same time the existing bands are moved down. FastReport designer
automatically positions bands on the page - header bands at the top, data bands in the middle
and footer bands at the bottom.
Now let’s add some objects. Add a “System text” object to the “PageHeader” band and in its
editor select “[DATE]” from the System variable drop-down list (you should remember that the
current date can also be displayed in a “Text” object by typing “[DATE]” in its editor). Next add a
“Text” object containing “Hello!” to the “ReportTitle” band. A “Text” object displaying the page
number has already been automatically added to the “PageFooter” band.
When running the report you will see that the objects in the finished report are printed in the
proper positions on the page.
So, bands are responsible for positioning objects on the page. Depending on the type of band,
we can print objects at the top or the bottom of a page and on the first or the last page. The
basic bands needed in most reports work as follows:
The “TfrxDBDataSet” connector component from the Delphi FastReport component palette
is used to connect a table (or any other data source) to FastReport. This component acts as the
messenger between the data source and the FastReport core. The component is responsible
for record navigation and field reference. This allows the FastReport core to be independent of
any data access library. FastReport can simultaneously work with “BDE”, “IB_Objects” (which
have a non-standard implementation, incompatible with TDataSet) and other libraries, as well as
with data from sources not connected to a DB, for example arrays or files. The "TfrxDBDataSet"
component is intended for working with data sources compatible with TDataSet (such as BDE,
ADO, IBX and the majority of other libraries). The “TfrxIBODataSet” component is intended for
working with IB_Objects. The “TfrxUserDataSet” component works with other data sources
(arrays, files, etc.).
It is very easy to use the “TfrxDBDataSet” component. Connect it to the data source by setting
the “DataSet” property (for direct connection to a table or a query) or the “DataSource” property
(for connection via a “TDataSource” component). The two methods are equivalent and mutually
exclusive, though the first does allow data management without requiring a “TDataSource”
component.
To make the Delphi component (and the data connected to it) available to the report, any dataset
used in the report must be enabled. Do this through the “Report>Data...” menu item in the
FastReport designer, selecting the required datasets in the opened dialogue.
DatabaseName = 'DBDEMOS'
TableName = 'Customer.db'
To make the table’s data available for use in FastReport add a “TfrxDBDataSet” component to
the form and then set one property:
DataSet = Table1
Finally, add a “TfrxReport” (the basic component of FastReport) to the form, double-click it to
open the FastReport designer and click the “New report” button there to automatically create a
basic report design with three bands (“Report title,” “Master data” and “Page footer”). To make
our table useable we must enable it in FastReport. Do this by clicking the “Report>Data...” menu
item, checking frxDBDataset1 (it is the only dataset listed at the moment) and clicking OK. After
the dialogue has closed, the DBDataset and the table fields to which it is connected become
visible in the “Data tree” pane in the IDE.
Now let’s design the report. First, add a “Text” object containing “List of clients” to the
“ReportTitle” band.
Next, connect the “MasterData” band to our dataset. This can done in any of three ways:
Now place four “Text” objects (which will display the client number, customer name, phone and
fax fields from the dataset) on the band. Let’s do this in several different ways to demonstrate
some features of the FastReport designer.
The first way is to place a “Text” object on the band and type "[frxDBDataSet1."CustNo"]" into it.
This is the least convenient way, since the field link has to be entered manually, with the
possibility of incorrectly typing the text. Somewhat easier is to use the expression designer -
double-click the “Text” object and click the leftmost button on the “Text” tab of the editor window
which opens. To insert our field double-click the field name in the expression designer. Click the
OK button to close the dialogue and see the field link inserted into the “Text” object.
The second way of adding the DB field to the “Text” object is by setting two properties in the
object inspector. Place a second “Text” object on the band, without writing anything in the editor
window. Set the object’s properties using the object inspector:
DataSet = frxDBDataSet1
DataField = 'Company'
Both of these properties are presented as a list, so just select the required value from the drop-
down using the mouse.
The third way is to “drag and drop” the required field from the “Data tree” pane into the report.
This is the simplest and easiest way, but before doing it uncheck the “Create header” checkbox
at the bottom of the “Data tree” pane, otherwise a second “Text” object, containing the field’s
name, is created in addition to the field link object itself. In this way select the “Phone” field and
drag it onto the band.
The fourth way requires the designer option “Show drop-down fields list” flag to be set (via main
menu : “View>Options”) and the band to be already connected to the dataset. Place a blank
“Text” object on the band and hover the cursor over the object a drop-down button will appear
at the right hand end. Click this button to open the list of DB fields and select the ”FAX” field.
Special syntax is required for links to the DB field: [datasetname.“fieldname”]. The field name (as
well as the dataset name) can contain spaces but there must not be any space between the
“point” and “quote” symbols.
Furthermore, we can also apply computing operations to a field in the expression, as shown
here:
Note how square and angle brackets have to be used. Remember that square brackets are
used by default for delimiting expressions in the object’s text. Where required, the square
brackets can be replaced by any other opening/closing character pairs (see the section
“Displaying expression with the help of the “Text” object”). Angle brackets are used inside
expressions for delineating the FastReport variables or DB fields. Logically we should write:
instead of
However, both these notations are correct, as FastReport does not require angle brackets
where the expression contains only a variable or only a DB field. In all other cases the angle
brackets are required, as in:
2.11 Aliases
In the previous report the data source was named frxDBDataSet1, the fields were named
“CustNo,” “Company,” “Phone,” and “FAX” and we referred to them in the report using
something like "[frxDBDataSet1.“CustNo"”]". Is this easy to understand? Not really. It would be
clearer if the data source and the field were named “Our clients” and “Number” respectively.
There is a problem, “frxDBDataSet1” is the name of the component, within which spaces are
not supported and “CustNo” is the name of the field in the database, which cannot be changed
without database restructure. However there is a way around this. We can use pseudonyms or
aliases for these items. In FastReport both the dataset and its fields possess a second name
property known as UserName, i.e. an alias, which can easily be changed. Whenever a
component has been given an alias (i.e. UserName changed from its default), this alias must be
used in FastReport - the component's Name property will not be recognized.
It is very easy to set aliases for a data source and its fields in FastReport. It is done in the Delphi
environment. To open the alias editor, double-click on the frxDBDataSet1 component or use its
context menu. You can modify the dataset and field aliases in the editor, and also specify which
fields are needed in the report. Let's rename the dataset and fields as below:
The alias for the dataset can also be modified without using the alias editor, changing the
“UserName” property of the frxDBDataSet1 component.
Having done this we now need to modify the report, as the names of the dataset and fields have
been changed. To modify the field names in report objects, it is easiest to use the fourth method
described in the ""Customer List" report" section. Move the mouse cursor over the “Text” object
so that the button in the right hand end of the object appears, click on the button and select the
field from the list. Following this the origin of the data in the dataset and its fields is more
apparent.
Note: It is better to assign aliases at the very beginning of report design to avoid having to later
rename all the fields within a report.
2.12 Variables
As well as aliases, there is another way to help the report designer set more understandable
names for DB fields and other information elements. A DB field name or any expression can be
associated with a variable. To create and work with variables in FastReport, select the “Report/
Variables...” menu item.
The list of variables in FastReport has a two-level structure. The first level simply contains the
category and the second level contains the variable itself. This categorization of variables is
convenient when the list of variables is very long. A variable list must contain at least one
category, which means that variables cannot be located at the top level. Furthermore, category
names cannot be included in reports, so each name within the list must be unique.
Let's illustrate the use of variables with the following example. Assume we have two data
sources: the first is “frxDBDataSet1” with “CustNo” and “Name” fields and the second is
“frxDBDataSet2” with “OrderNo” and “Date” fields. We can associate the following list of
variables with the fields:
Clients
Client number
Client name
Orders
Order number
Order date
where “Clients” and “Orders” are two categories. Open the variables editor and create this
structure by using of the “New category”, “New variable”, and “Edit” buttons. To link the variables
to the DB fields select a variable and double-click on the required DB field in the right hand pane.
The link to the DB field will be shown in the bottom pane. The variable is now associated with
this expression so the value of the variable becomes the value of the expression. If necessary,
the expression can be edited or modified manually and any FR functions or other variables can
be used within it. Remember that categories must not be associated with any expression.
After the list of variables has been created, close the variables editor. Now we can insert the
variables into the report. In contrast to DB fields, there are fewer insertion methods. We can
either insert a variable into the object text manually by typing “[Client number]”, or we can drag a
variable from the “Data tree” pane onto the report page, in which case switch to the “Variables”
tab in this pane.
Let’s look at the capabilities of this object. Create a blank report and place a “Picture” object on
the report page. If the picture editor does not open automatically then double-click on the
"Picture" object. You can load any picture from a graphic file or clear the existing picture and
close the editor by clicking on the green Tick.
Some of the object's properties are available on the context menu as well as in the object
inspector:
- AutoSize
- Stretch : enabled by default
- Center
- KeepAspectRatio : enabled by default
When “AutoSize” is enabled the object is re-sized up to the size of the picture it contains.
Sometimes this can be useful if database pictures of differing size are being displayed.
“AutoSize” is disabled by default.
“Stretch” is enabled by default. This property stretches the picture within the object. Change the
object’s size using the mouse and you will see that the whole picture is always displayed within
the object’s frame. If “Stretch” is disabled the picture (or only part of it) is displayed at its original
size. This behaviour differs from “AutoSize” in that you have control of the object's frame size,
which can be larger or smaller than the picture it contains. With “AutoSize” enabled you have no
control over the object's frame size.
“KeepAspectRatio” is enabled by default : it keeps the picture from distorting when the object’s
size is changed. This property is only effective when “Stretch” is also enabled. With
“KeepAspectRatio” enabled a drawn circle remains a circle without turning into an oval,
whatever the “Picture” object's size. The stretched picture occupies only that part of the internal
space of the object needed to display it with the correct aspect ratio. When disabled, the picture
will be stretched to fill the object's frame and will be distorted if the frame’s aspect ratio is not the
same as the picture's aspect ratio.
Another useful property available only in the object inspector is "FileLink". Entering a filename,
such as c:\picture.bmp, or a variable which contains a filename, such as [picture_file], will load
the picture from the named file when you run the report.
Let's demonstrate this with a report giving the names and images of some fish. We will again
need the “DBDEMOS” database that is included in the Delphi distribution kit.
Create a blank project in Delphi, place a “TTable” component on the form and set some
properties:
DatabaseName = 'DBDEMOS'
TableName = 'Biolife.db'
To work with this table in FastReport add a “TfrxDBDataSet” component and set these
properties:
DataSet = Table1
UserName = 'Bio'
Finally, add a “TfrxReport” component to the form. Open the report designer and click the “New
report” button to create a basic design in FastReport. Now enable the use of the frxDBDataset
and its connected table in the report - from the Menu select “Report>Data”, select the “Bio”
dataset and click OK.
Now we’ll add objects to the report page. Place a “Text” object containing “Fish” in the
“ReportTitle” band. Connect the “Master data” band to the data source (double-click on the band
and select “Bio” from the list). Increase the band’s height to 5 cm by dragging the bottom of the
band down or by using the object inspector. Place a “Text” object in the band and connect it to
the “CommonName” field using any of the methods previously described. After that, drop the
“Picture” object alongside, and connect it to the “Graphic” field by setting its properties in the
object inspector:
DataSet = Bio
DataField = 'Graphic'
Note that both of these properties are of the “List” type, and can be set to the required values
using the mouse. To make room for the picture, stretch the object to 4 x 2.5cm.
The report design is now finished and it produces the report shown here:
At first glance, this would seem to be easy - add a “Text” object to the data band between the
existing objects, connect it to the “Notes” field and set the object’s size to 8 x 2.5 cm. However,
the report preview is not exactly what we want:
FastReport performed exactly what it was instructed to do. The “Notes” field contains multi-lined
text of varying length but the “Text” object displaying the information from this field has a fixed
size. This is why some lines appear to be cut off. What can be done about this?
Of course, either the size of the object could be increased or its font size could be reduced.
However, this may lead to wastage of space on the output page as some fish have long
descriptions, while others have short ones. FastReport has some properties which allow us to
resolve this problem.
These properties allow a band or an object to automatically adjust its height to create the
necessary space for a given record (row). To achieve this, we just need to enable the “Stretch”
property of both the band and the “Text” object. However, that is not quite all, because a “Text”
object with longer text should be able to stretch by itself we’ll need to set some of its other
properties too.
The “Text” object can automatically set its height and width to make space for its contents.
“AutoWidth” and “StretchMode” can be used for this. “AutoWidth” allows the “Text” object to vary
its width so that all the lines make space without splitting any words. This mode is useful when
an object has a single text line and when growth to the right will not effect other objects. The
“Stretch” property allows the object’s height to grow to accommodate the text without changing
the object's width. "Stretch" has several modes which can be selected in the object inspector:
Here we are interested in the “Stretch” property of the “Text” object. Enable it using the object's
context menu or by setting "StretchMode" to smActualHeight. Also enable the band's “Stretch”
property. Preview the report and make sure that everything is now as expected.
As you can see, when constructing the report FastReport fills objects with data and stretches
them if “Stretch” is enabled. It then computes the band’s height so each object has enough
room. If the band's “Stretch” property is disabled, this height adjustment is not performed and
the band is displayed at the height set in the design. In this case we would see that the objects
with longer text would still be stretched but the band would not, which leads to overlaying of text,
since the following band is displayed immediately after the previous one.
Our report contains an object with large text, which is why the band height is quite large.
Furthermore, if a large band does not have enough room on a page it is shifted to the next one
leaving a lot of unused space remaining at the bottom of the page, as shown here:
To limit paper wastage, let's use a FastReport feature that makes paragraphs from a band’s
contents. All we need do is enable the “AllowSplit” property of the “First level data” band. You will
see that there is now less white space at the bottom of the report pages:
How does this band splitting work? There are some objects in FastReport which support this
feature. They are the “Text”, “Line” and “RichEdit” objects. They can be “split”, while other
objects cannot. When FastReport needs to split a band, it does it in the following way:
- displays the non-splittable objects which have room in the white space
- partially displays splittable objects (“Text” objects are displayed in a way that all lines have
space in the object)
- creates a new page and continues with object display in the band
- if a non-splittable object does not have room in the white space, it is shifted to the next page;
at the same time all the objects located beneath it are shifted as required
- the process continues until all of the band objects are fully displayed.
It should be noted, that the splitting algorithm is not perfect and the final output may not be quite
as expected. You should use this option very carefully in cases where objects on the split band
are grouped in a complicated way, and/or their font sizes differ. Here is an example of what
could be generated:
Add one more “Text” object to the data band below the Bio.“Notes” object, as shown here:
We will disable stretching for the Bio.“Notes” object and enable it for the bottom object. To make
the text “flow” from the Bio.“Notes” object into the bottom one, set the “FlowTo” property of the
Bio.“Notes” object in the object inspector - it is a drop-down list. Select the bottom object’s name
from this list. The resulting report will look like this:
When the report is generated, if the text does not fit into the top object the excess part is shifted
to the bottom object. With the arrangement of the two objects around the picture the effect of
text wrapping is achieved.
Please note: the main object must be inserted in the report before inserting the linked one,
otherwise text flow may not function correctly! If this occurs, select the linked object and bring it
to the front using the “Edit>Bring to front menu item.
Place the “Text” objects side by side on the band and minimize the band’s height.
The first and the simplest type of table has full cell framing. To achieve this enable all frame lines
(found in Frame.Typ property) for every object:
The next type of framing draws only horizontal or only vertical cell lines, again through the
Frame.Typ property:
Finally, to draw only an external frame to the table the report needs a modification:
You can see that we have added two “Text” objects, one in the pageheader and one in the
pagefooter bands. The appropriate frame lines for the objects along the edges of the data band
have been enabled, resulting in the report looking like this:
All these examples contained bands which had fixed sizes. How is it possible to display a table
when the band is stretched? Let's explain how, by means of an example. Add a new field (multi-
lined text from Bio.“Notes”) to our report. As you have already learnt, the “Stretch” property must
be enabled both for this object and for the band in which the object is located so that the band
height is altered, dependent on the size of the text in the “Text” object. The generated report
looks like this:
This is a bit different from what we need - it looks nicer if the frames of the neighboring objects
stretch as well. FastReport can solve this problem easily. Set the “StretchMode” property to
smMaxHeight in the object inspector for all objects which are to be stretched and the FastReport
core will first calculate the maximum band height and then “stretch” objects with stretch enabled
to the bottom edge of the band. Because object frames stretch together with the object the
report’s appearance changes:
Notice there is a lot of blank space on the right side of the page. To make use of the whole page
the number of columns in which data is displayed can be set in the report page settings. To do
this either double-click on the white space on the design page or use “File>Page Settings...” on
the menu.
The column count, width and positions are set on the "Other options" tab in the dialogue. In our
example only the Number needs to be set at 2, as FastReport adjusts the other options
automatically. The column frame is displayed in the designer as a thin vertical line:
The report is now created in the following way. FastReport repeats the “First level data” band as
long as there is white space at the bottom of the page. After that, a new column on the same
page is created and data bands continue repeating from the top of the new column : this
contrasts with simple reports, where a new page is created instead of a new column. When the
second column has been filled then a third column is created, and so on - our example only has
two columns though. When all of the columns have been filled then FastReport creates a new
page and continues displaying data starting in the first column again.
The “Columns” property, available in the object inspector for all data bands, is another way to set
the number of columns. If this property is changed from zero however, the number of columns
is set only for the selected databand and not for the whole page (as in the previous example).
The effect is to display data firstly from 'left-to-right then top-to-bottom', in contrast to the 'top-to-
bottom then left-to-the right' output shown above.
Disable the columns in the Page Options dialogue (set Column Number to 1) and enter 2 in the
databand “Columns” property. Note that the “ColumnWidth” property must also be changed from
the default zero to prevent column 2 overlaying column 1; optionally the “Column Gap” property
can also be changed. FastReport then shows the column frames as dotted lines :
2.20 Child-bands
There can be a problem when one field in a label-type report has content of variable length. To
simulate this in our example, let's reduce the width of the Bio.“Common Name” object to 2.5 cm
and enable the “Stretch” property for this object and also for the “First level data” band. Enable
all the frame lines for all the objects so that the effects of the stretching function are clear to see.
The design now outputs a report like this:
Here the first Bio.“Common Name” field object contains a lot of text and is stretched into two
lines. This causes the Bio.“Length (cm)” field object, located beneath it, to be shifted
downwards. This happens because all the objects have their “ShiftMode” property set to
smAlways by default, meaning they shift downwards if there is a stretchable object (a “Text”
object with the “Stretch” property enabled) above them. The distance shifted depends on how
much the object above is stretched.
But this is not want we want to happen on our label - we want the “Length, cm.” object also to be
shifted by the same amount. This can be achieved by using a special FastReport band type
called the “Child” band. A “Child” band is linked to (and displayed after) its parent band. Add a
“Child” band to the design and drag the two “Text” objects into it, as shown here:
Link the MasterData band to the Child band, by setting its “Child” property to “Child1” in the
object inspector. Now, each time the MasterData band prints, the Child band is printed
immediately after it:
The “Length, cm:” title now lines up exactly with its value field “50”. To prevent a child band from
being moved to the next page if there is insufficient white space on the page (and becoming so-
called 'orphaned' from its parent band), enable the “KeepChild” property of the parent band in the
object inspector.
1: the three top objects have “Stretch” enabled and the three bottom objects have “ShiftMode”
set to 'smAlways'. The bottom objects only shift far enough to allow space for the stretched
object above it:
2: the three top objects have “Stretch” enabled and the three bottom objects have “ShiftMode”
set to 'smWhenOverlapped'. The bottom objects shift to allow space for the stretched object
and also to maintain the designed separation of the two objects:
This allows the creation of complicated reports, in particular where an object could overlap
several other objects above it at the same time. In the example below all the upper objects
contain stretchable text and all the lower ones are in 'smWhenOverlapped' mode. The lower
objects will always be displayed close to the object above, irrespective of text length in the
objects above:
Let's look at how to design a two data level report. The report will output data from the demo
tables: “Customer” and “Orders”. The first table is a list of customers and the second one is a
list of orders placed by those customers. The tables contain data in the following fields:
Customer:
CustNo Company
1221 Kauai Dive Shoppe
1231 Unisco
1351 Sight Diver
….
Orders:
As you can see, the second table contains the list of all the orders placed by all the customers.
To view the orders from the Orders table which are placed by one customer in the Customers
table, the two tables are linked on the “CustNo” field, which is common to both tables. The report
output from this data should appear as follows:
1231 Unisco
1060 28.02.1989
Let's design the report. Create a new project in Delphi, place two “TTable”, one "TDataSource",
two “TfrxDBDataSet” and one “TfrxReport” components on the form. Set the component
properties as shown here:
Table1:
DatabaseName = 'DBDEMOS'
TableName = 'Customer.db'
Table2:
DatabaseName = 'DBDEMOS'
TableName = 'Orders.db'
DataSource1:
DataSet = Table1
frxDBDataSet1:
DataSet = Table1
UserName = 'Customers'
frxDBDataSet2:
DataSet = Table2
UserName = 'Orders'
In the report designer, enable the data sources in the “Report>Data...” dialogue. Now add a
Note that the “MasterData” band must be placed above the “DetailData” band! Drag it there if
necessary. If the Master is placed under the Detail, FastReport will generate an error message
when you preview the report.
If you previewed the report now, you would see that the list of orders remains the same for every
customer and contains all the records from the “Orders” table. This would be because we have
not set the MasterSource property of the “Orders” table. Set “MasterSource = DataSource1” for
the “Table2” component on the Delphi form. Now we have set a 'master-detail' relationship. After
that, we select the fields to link on. Set the “MasterFields” property of the “Table2” component:
We need to link together the “CustNo” fields in the two sources. To do this, select the desired
fields and click the “Add” button. The Field link will appear in the bottom pane. Finish by closing
the editor using ОК.
When creating the preview FastReport does the following. After a record is output from the
master table (Customer), it sets the filter on the detail table (Orders). Only those records which
meet the 'Orders.CustNo = Customer.CustNo' condition will remain in the table. This means
that for each customer only those orders which belong to the current customer will be displayed
in the detail band. This is an important concept to grasp. Even though data bands may be of
master or of detail type, they only control the positioning of the data on the output page (order
and number of times displayed). The data displayed by the objects in the bands is dependent on
which fields the objects are linked to and on the external linking of the two tables.
Let's look at a more complex example using two data levels - master and detail:
As you can see, the header is output before all data band records. So the master data header is
output once at the beginning of the report and a detail data header is output before each group of
detail bands belonging to the current master record band. The detail footer is output after the
group of detail bands belonging to the master record band and the master footer is not output
until after all the master data band records have been output.
Using the FooterAfterEach property of the data band, we can override this behavior. Setting this
property to True (you may also use the context menu for the data band - "Footer After Each
Row") causes footer output after each data row. This may be useful in the design of some
master-detail reports. If FooterAfterEach for the master data band is set to True the report will
look like this:
When a new report is created in the designer it contains one page by default. You can add a
new page by clicking on the button in the toolbar or by selecting the “File>New page” menu
command. Then you would see that a new page tab appears in the designer:
You can easily switch between pages by clicking on the page tabs. Page tabs can be dragged
(“drag&drop”) to easily change their printing order. An unnecessary page can be deleted using
the button in the toolbar or by selecting the “Edit>Delete page" menu command. You can also
call the context menu by right-clicking on the page tab:
The number of design pages in a report is unlimited. As a rule additional pages are used either
for title pages or, in more complicated reports, for data coming from many data sources.
Here is a simple example of creating a title page. Let's use our previous report having one data
level. Add a new page to it, it will be added as a second page. Move it to the front of the report by
grabbing the page2 tab with the mouse and dragging it over the first page tab, page1. This
changes the page order. Select the new page and place a “Text” object containing “Our report”
in the middle of the page. That is all that is needed. The report with a title page is complete:
These two properties control the degree of band/page repetition in the report, without being
influenced by the report data.
III
Groups and
aggregates
54 FastReport VCL 6 User's Manual
To do this, an SQL query is needed which returns data from both tables and sorted in a
particular way. In our example, the tables will be joined on the “CustNo” fields present in both
tables. The query might be:
The "order by" line is required to sort the records on the “CustNo” field. This query returns a
dataset like:
How can a multi-level report be designed using this data? In FastReport there is a special band,
the “Group Header”. A condition (a DB field value or an expression) is specifed for the band; the
band is output every time the condition's value changes. The following example illustrates this.
Let's create a new project in Delphi and place “TQuery”, “TfrxReport” and “TfrxDBDataSet”
components on the form. Set their properties as shown here:
Query1:
DatabaseName = 'DBDEMOS'
SQL =
select * from customer, orders
where orders.CustNo = customer.CustNo
order by customer.CustNo
frxDBDataSet1:
DataSet = Query1
UserName = 'Group'
Open the report designer and create a new report. Connect our data source to the report. After
that, add a “Group header” band to the report. Set a condition (in this case the “Group.CustNo”
data field) in the “Group header” band editor:
Also link the data band to the “Group” data source and arrange some objects as shown (note
that the group header must be placed above the data band):
As you can see, the “Group header” band is output only when the field to which it is linked
changes in value. Otherwise the data band connected to the “Group” dataset is displayed. If we
compare this report to the master-detail report constructed earlier, it is obvious that order
numbers are not sorted at all. This can be easily corrected by changing the SQL query’s 'order
by' clause:
Reports having nested groups can be designed in a similar way. The depth of nesting of groups
is unlimited. Reports which use groups have some advantages over reports of the master-detail
type:
The only disadvantage is the need to write queries in the SQL language. However, a basic
knowledge of SQL is virtually obligatory for any programmer working with databases.
Looking at the report, it is unclear to which client the list of orders at the top of the second page
refers. FastReport allows the group header to be output on the new page (which in our case
identifies the client). To do this, enable the “ReprintOnNewPage” property for the “Group header”
band using the object inspector or the context menu . This will alter the report as shown:
There is another way to avoid breaking groups at page boundaries. This is to enable the
“KeepTogether” property for the group header in the object inspector or context menu. Then, if
the whole group doesn't fit into the free space on the output page, it is moved as a whole to a
new page. In our example, appearing like this:
A lot of blank space may be left on some pages but, if possible, the group is displayed complete
on one page.
The “StartNewPage” group header property allows the output of groups on separate pages. It
possibly will lead to a wastage of paper but might be useful in some situations.
Here's an example : you have created a report which puts the customer name in a group header
and customer orders in the data band. Now you need to print the report and send it to all your
customers, each customer getting only the pages of the report which refer to them.
Unfortunately, the page numbering in the report is continuous, so a customer getting the pages
numbered 50 to 52 will ask "where are the first 49 pages?". To avoid this situation you have to
number to each customer's pages with its own sequence. Inside the report each group will have
pages numbered from 1.
Please note: if you set “ResetPageNumbers” to True, you should also set “StartNewPage” to
True, so that each group will start on a new page. To print the page number or total pages, you
should use the [Page] and [TotalPages] system variables and not [Page#] and [TotalPages#].
You can control whether all groups are collapsed or expanded when the report first runs. By
default a group is collapsed but you can set ExpandDrillDown to True if you want it expanded.
You can also use the preview's context menu to expand or collapse all groups at once.
When previewing the report, we can see that both the data levels now have their own line
numbers:
To continuously number the second level data lines, use the [Line#] variable instead of [Line] in
the “Text” object on the data band. The result will then look like:
The syntax of all aggregate functions (except COUNT) is similar to that of the SUM function:
An expression is the only mandatory parameter, the other two are optional. Nevertheless, to
avoid making mistakes it is recommended that band parameters are always given.
COUNT(band, flags)
COUNT(band)
There is a general rule for all aggregate functions: an aggregate can only be calculated over a
data band and can only be used in that band’s footer, which can be one of : footer, page footer,
group footer, column footer or report footer (summary band).
How do aggregate functions work? We will look at this using our group report example. Let's add
some new elements to the report:
The Group.“ItemsTotal” field in the data band displays the current order total. Place a “Text”
object in the group footer containing the aggregate SUM shown above. It will display the total of
all orders placed by the given customer. Using a calculator, we can check that the result is
correct:
Aggregate functions work like this : before outputting a report, FastReport scans the “Text”
object contents to find any aggregate functions. The aggregates found are linked to the data
bands in their parameters (in our example “SUM” is linked to the “MasterData1” band). During
report output (when the data band is displayed) the values of the aggregates linked to it are
calculated. In our case the Group.“ItemsTotal” field values are accumulated. Once the group
footer displaying the aggregate has been output the aggregate value is reset to zero, and the
cycle is repeated for the next group, and so on.
What is the purpose of the optional “Flags” parameter in aggregate functions? Reports may
have some, or all, of the data bands hidden. We may, however, need to calculate aggregates
over all the data bands, whether visible or not. In our example, set the “Visible” property of the
data band to false, so preventing its display. To still have this hidden data band included in the
calculations, we have to set the third, optional parameter in the function call to the figure 1, i.e.:
[SUM(<Group."ItemsTotal">,MasterData1,1)]
When the “Flags” parameter value is set to 2, the aggregate value is not reset immediately after
it is displayed : the aggregate becomes a “running” calculation for each successive output. Let’s
modify the function call as shown here:
[SUM(<Group."ItemsTotal">,MasterData1,3)]
The value “3” is a bit combination of “1” and “2”, meaning that we need to include the invisible
bands, without resetting the total after each group. As a result, we have:
As you can see, we have added a “Report Summary” band containing a “Text” object with the
aggregate SUM to both the “Report Summary” band and the “Page Footer” band. That is all that
is needed:
Firstly, we can use the “System text” object to output an aggregate. In fact this object is similar
to a “Text” object with its own special editor for more easily specifying system variables or
aggregate functions:
Select a function type, then a data band (over which the aggregate is to be calculated) and finally
a DB field or an expression whose value is to be calculated. You can also set the “Count
invisible bands” and “Running totals” flags, if required.
The second method is to use a “Text” object and click the button in its editor : this opens a
dialogue similar to the “System text” object editor. When the OK button is clicked a call to the
aggregate function is inserted into the object's text.
IV
Formatting,
highlighting
Formatting, highlighting 67
Data fields usually return a formatted value, which is simply displayed by the “Text” object
without any change. To apply formatting to the “SUM” result, let's use the value formatting tools
in FastReport.
Select the object containing the Sum and open the format editor either from 'Display Format...' in
its context menu or through the “DisplayFormat” property in the object inspector.
This editor lists the format categories on the left, the corresponding formats on the right and the
format string and decimal separator for the selected category and format below. We’ll select the
“Number” category and "$1,234.50" format. The format string is an argument for the Delphi
"Format" function, which FastReport uses to implement number formatting. The format string
and decimal separator can be changed. If the decimal separator is left blank then the current
regional setup value is used.
After clicking ОК and previewing the report you will see that the Sum in the report is now
formatted correctly:
Note the combobox at the top of the dialogue form. If we have more than one expression in an
object, we may set different formatting for each expression.
Using the example, re-size the footer and its object and change the object text to this:
Total: [SUM(<Group."ItemsTotal">,MasterData1)]
Number: [COUNT(MasterData1)]
The total and the number of orders will be displayed in the object.
In the report preview both of these values are shown in monetary format, which we had
previously set. This is incorrect:
To display each value in its correct format they need to be formatted individually. To do this we
use format tags, which are placed just before the closing square bracket of the expression. In
our example, disable formatting for the object (select “Text (no formatting)” category in the
format editor). Now we need to specify the format for just the first expression, as the second one
will be displayed correctly by default (i.e. as an integer). Change the object text as follows:
Preview the report to make sure that the object is displayed correctly:
[expression #formattag]
Note that the space character between the expression and the “#” symbol is mandatory! The
format tag itself might look like:
Format_string in each case is the argument to the function used for formatting. So, for
numerical formatting the Delphi Format function is used, and for date/time the FormatDateTime
function. The syntax for these functions can be found in the Delphi help system. Below are
several values used in FastReport:
A comma or a dash can be used instead of the dot in the format_string for numerical formatting.
This symbol is used as the separator between the integer and the fractional parts of the value.
Any other character is not allowed.
For formatting with the “#b” type (boolean), the format_string is entered as two values separated
by a comma. The first value corresponds to “False” and the second to “True”.
It is possible to define one or several conditions and set up the style for every condition. Style
can contain one or several settings:
frame;
fill;
font;
object's visibility.
You can indicate, which settings need to be changed when the condition is met. For this, check
the needed setting using the checkbox.
In order to create a new condition, click the "Add" button. You will see an expression editor. Here,
it is possible to write any expression which returns a boolean result. In many cases you will use
the "Value" variable, which contains the currently printing value.
Let us look at the following example: we have a "Text" object, in which we print the amount of
products in stock:
[Products."UnitsInStock"]
We want to paint the object red, if the amount of products = 0. For this, we create the following
condition:
Value = 0
Attention: if you have selected C++Script as a script language (see more details in the
"Script" chapter), you should write the condition using C++Script:
Value == 0
In the given case, we used the "Value" variable, which has got a printed value. If there are
several expressions in an object, then this variable will have the value of the last expression.
Instead of "Value", you can use a data column:
<Products."UnitsInStock"> = 0
Configure the style for the given condition in such a way that only fill can be used, and choose
the red color:
When printing an object which has a zero value, it will be red. Let us make our example more
complex, we will add another condition. If the units in stock is less than 10, it must be printed
yellow. To do this, open the condition editor and click the "Add" button. The second condition will
be like this:
Value < 10
In case where several conditions have been indicated, FastReport checks all the conditions,
starting from the first one. If a certain condition is met, FastReport applies its style settings to the
object, and the process stops. It is important to put the conditions in a correct order. The order
which we have seen in this example is correct:
1. Value = 0
2. Value < 10
1. Value < 10
2. Value = 0
In the given case, the "Value = 0" will not be executed, because when the value is zero, then the
first condition will be met. In order to change the order of the conditions, use the and
buttons.
Remove all the “Text” objects from the “MasterData” band. Place a “Text” object on the data
band and stretch it to cover almost all of the band space:
This object will change its color dependent on the data line number. Select the object and set the
following conditional expression in the Highlight tab of the object editor:
<Line> mod 2 = 1
Note: if you have selected C++Script as the script language (see more details in the
"Script" chapter), you should write the condition using C++Script as:
<Line> % 2 == 1
Select a gray as the color for highlighting, not too saturated a color, but closer to white. Now the
other objects can be added to the data-band on top of the first empty “Text” object:
V
Nested reports
(subreports)
Nested reports (subreports) 75
When a “Subreport” object is inserted into a design FastReport automatically adds a new page,
which is connected to the “Subreport”. Such a nested report resembles a multi-page report in
terms of design structure. The only difference is that the nested report is displayed in a specific
location on the basic design page, and not after it. When this report is output, as soon as the
“Subreport” object is encountered the report engine outputs the connected subreport page in its
entirety. After that output continues with the rest of the basic design page.
Further “Subreport” objects can be inserted into a subreport design page, so increasing the
depth of nesting. An example of a nested report can be found in the demo program - the
“Subreports” report.
It is worth noting that FastReport’s ability to use subreports enables deep nesting of data.
Remember that the number of data levels in FastReport is limited to only six when Detail data
bands are used instead of the “Subreport” object.
This design allows reports where the data output of each “Subreport” has varying lengths of
rows/records, or varying heights or degree of stretching :
As illustrated, FastReport continues to output the basic design page only after the longest
Subreport has finished. The Vertical Alignment property can also be used to adjust “Text” object
alignment within each subreport.
If this is done then the objects created in the subreport will overlay everything placed below the
subreport object on the main design page, and the output will be something like this:
This method is also used when several Subreports must be placed one below the other. Use a
child band for each Subreport and chain them together, setting the child property of Child1 to
Child2, and so on.
Usually a subreport is output as a set of bands on the basic report page. When this is so, the
height of the parent band containing the "Subreport" object is not controlled by the bands in the
subreport, i.e. it cannot be stretched. If the subreport "PrintOnParent" property is set to True,
either in the object inspector or the context menu, the objects in the subreport are physically
printed on the band which contains the "Subreport" object. This band can be made to stretch
and can have stretched objects placed on it:
VI
Script
Script 79
A script is a program, written in a high-level language, which is part of a report. As the report
runs, the script runs as well. A script can handle data in ways that are not possible just using the
normal operations of the FastReport core; for example, a script can hide redundant data
depending on a predefined condition. A script can also be used for controlling the properties of
dialogue forms which are part of a report.
A script is written in one of the languages supported by the script engine (FastScript). Currently,
these are:
- PascalScript
- C++Script
- BasicScript
- JScript
Scripts can be created in the FastReport designer, which contains a script editor with syntax
highlighting. There is also an embedded debugger which has the following functions: “Step”,
“Breakpoint”, “Run to cursor” and “Evaluate”.
1 “Code” tab
2 script editor pane
3 drop-down list for selecting the language in which the script is written
4 debugger toolbar
- run report in debugging mode (F9)
- run to cursor (F4)
- execute the regular code line (Step into, F7)
List of the shortcut keys which can be used in the script editor:
Key Meaning
Cursor arrows move cursor
PageUp, PageDown go to previous/next page
Ctrl+PageUp go to beginning of the text
Ctrl+PageDown go to end of the text
Home go to beginning of the line
End go to end of the line
Enter go to next line
Delete delete symbol at cursor position; delete selected text
Backspace delete symbol to the left of the cursor
Ctrl+Y delete current line
Ctrl+Z undo last action (up to 32 events)
Shift+Cursor arrows select a text block
Ctrl+A select whole text
Ctrl+U shift selected block by 2 symbols to the left
Ctrl+I shift selected block by 2 symbols to the right
Ctrl+C, Ctrl+Insert copy selected block to the clipboard
Ctrl+V, Shift+Insert paste text from the clipboard
Ctrl+X, Shift+Delete cut selected block to the clipboard
Ctrl+Shift+<number> set bookmark with <number> 0..9 on the current line
Ctrl+<number> jump to bookmark <number>
Ctrl+F search a line
Ctrl+R replace a line
F3 repeated search/replacement from the cursor position
F4 set breakpoint for script to run to (Run to cursor)
Ctrl+F2 reset the script
Ctrl+F7 preview value of variable (Evaluate)
F9 run the script (Run)
PascalScript structure:
begin
end;
C++Script structure:
{ // main procedure.
}
JScript structure:
BasicScript structure:
' the “imports” chapter should be located before Any other chapter
imports "unit1.vb", "unit2.vb"
A more detailed description of the FastScript engine can be found in its documentation. This
information is not repeated here in this user manual:
- syntactic charts for each of the supported languages
- supported data types
- operations with classes, properties, methods and events
- nested functions
Later we will look at examples of scripts written in the “PascalScript” language. When a new
report is created this language is selected by default.
Open the designer and click on the “New report” button so that FastReport automatically creates
a basic template. Switch to the “Code” tab and write the following script:
PascalScript:
begin
ShowMessage('Hello, World!');
end.
C++ Script:
{
ShowMessage("Hello, World!");
}
After that run the report. As expected, FastReport displays a little dialogue with a greeting:
Let's explain some details. We created a script consisting of a single “begin..end” block. So our
script has a very simple structure; it consists only of a main procedure (see the “Structure of a
script” section above). The main procedure is executed as soon as the report runs. In this case
it displayed a greeting dialogue; the procedure ends right after the dialogue is closed. After the
main procedure has finished running, the normal report construction begins.
PascalScript:
Memo1.Color := clRed
C++Script:
Memo1.Color = clRed
The list of report objects accessible from the script is shown in the “Report tree” pane. What
object properties are available to a script? The answer is simple: all those that are visible in the
object inspector. The object inspector also shows hints for each property at the bottom. Both
panes (report tree and object inspector) are available while working with a script. To get detailed
help on object properties and methods use the FastReport help file which is included in the
distribution kit.
Here's a simple example. Place a “Text” object named “MyTextObject” and containing “Test”
onto the report design page. Then write this script:
PascalScript:
begin
MyTextObject.Color := clRed
end.
C++Script:
{
MyTextObject.Color = clRed
}
Run the report and see that the object’s color is red.
PascalScript:
C++ Script:
PascalScript:
C++ Script:
PascalScript:
C++ Script:
It is worth noting that to assign a string value to the variable you must add quotes around the
value:
PascalScript:
C++ Script:
System variables, such as “Page#,” should be referenced in exactly the same way:
PascalScript:
C++ Script:
if (<Page#> == 1) { ... }
PascalScript:
C++ Script:
Alternatively the “Get” function can be used for accessing DB fields (in fact, this function is used
implicitly by FastReport when calculating expressions enclosed in angle brackets).
PascalScript:
var
MyVariable: String;
begin
MyVariable := 'Hello!';
end.
C++ Script:
string MyVariable;
{
MyVariable = "Hello!";
}
The variable’s value can be displayed in a “Text” object, for example, by typing '[MyVariable]' into
the object.
A variable’s name must be unique. This means the name must not duplicate the name of any
other report object, standard function or constant. If there is an error in a script, a message will
be displayed when the report is run and report construction will be stopped.
6.9 Events
So far we have looked at scripts with only a main procedure, which is executed when a report
starts running. In the main procedure initial settings can be made and variables initialized.
However this is not enough for total control over the process of report generation. To enable as
much control as possible over report generation every object has several events to which
handlers (i.e. procedures in the script) can be assigned. For example, connecting a handler to
the data band enables records to be filtered, such that the band can be hidden or revealed
according to specific conditions being met.
Let's demonstrate the process of report creation and the events triggered by means of a simple
report containing one page and having one “MasterData” band, with two “Text” objects on the
band:
As described above, the script's main procedure is called at the very start of running the report.
After that the essentials of report construction begin. Firstly the “OnStartReport” event of the
"Report" object is called. Then, before an output page is created, the “OnBeforePrint” page event
is called. This event is called once for each design page in the report template (design pages
should not be confused with the output pages of a report!). In our example the event is called
once, as the report design consists of only one design page.
Then the events of the data bands are called in the following order:
1. the band's “OnBeforePrint” event is called
2. the “OnBeforePrint” event of each object contained in the band is called
3. each object is filled with data (in our example with values of the “Company” and “Addr1" DB
fields)
4. the “OnAfterData” event of each object is called
5. actions such as positioning objects on the band (if there are stretchable objects among
them), calculating band height and stretching it (if it is stretchable) are performed
6. the band's “OnAfterCalcHeight” event is called
7. a new output page is created if the band hasn't enough room in the page's white space
8. the band and all of its objects are displayed on the output page
9. the “OnAfterPrint” event of each band object is called
10. the “OnAfterPrint” event of the band itself is called
Bands continue to be printed as long as the source connected to the band has data. After that
report printing stops, the report page's “OnAfterPrint” event is called and finally the “Report”
object's “OnStopReport” event.
So by using the events of different objects practically every step of the report creation process
can be managed. The key to using events is a thorough understanding of the band output
process, which is discussed in the next nine sections. Most of the actions can be performed
using the band's “OnBeforePrint” event only; any modifications made to an object are displayed
immediately. However, if the band is stretchable, it is impossible to say in this event on which
page the band will be printed, since calculation of the band's height is performed in step 5. It can
be done, however, either in the “OnAfterCalcHeight” event in step 6 or in the “OnAfterPrint” event
in step 9. Note that in the last event the band will already have been output so modification to
objects will not have any visible effect.
It is essential to clearly understand “where and when” the bands are output and to understand
the timing (calling order) of each of their events. Likewise for each of the objects contained in the
bands.
Let's create a new project in Delphi, place “TTable”, “TfrxDBDataSet” and “TfrxReport”
components on the form and set these properties:
Table1:
DatabaseName = 'DBDEMOS'
TableName = 'customer.db'
frxDBDataSet1:
DataSet = Table1
UserName = 'Customers'
Select the data band and switch to the “Events” tab in the object inspector:
To create an “OnBeforePrint” event handler (which is the most appropriate for us) double-click
on the blank field to the right of the event’s name:
This adds a blank handler to the script and the designer switches to the “Code” tab.
All that is needed now is to type the following code in the handler’s body:
PascalScript:
C++Script:
if (Copy(<Customers."Company">, 1, 1) == "A")
MasterData1.Visible = true;
else
MasterData1.Visible = false;
Run the report and make sure that the script works correctly:
Let's explain several things. One handler can be assigned to the events of more than one object
- the “Sender” parameter shows which object has initiated the event. To assign an existing
handler to an event, either type it directly into the object inspector, or select it from the drop-
down list:
A link to a handler can easily be deleted - select the assigned handler in the object inspector and
press the “Delete” key.
Let's show two methods for performing this task. First create a new project in Delphi, place
“TQuery”, “TfrxReport” and “TfrxDBDataSet” components on the form and set them up as
follows:
Query1:
DatabaseName = 'DBDEMOS'
SQL =
select * from customer, orders
where orders.CustNo = customer.CustNo
order by customer.CustNo, orders.OrderNo
frxDBDataSet1:
DataSet = Query1
UserName = 'Group'
Open the designer and connect the data source to the report. Enable double-pass in the report's
settings (“Report > Options...” menu item). Add two bands to the report: “GroupHeader” and
“MasterData”. In the “GroupHeader” band's editor, enter the Group.“CustNo” data field. Connect
the data band to the “Group” data source and then arrange some objects in the following way:
To display the sum we use the arrowed object in the design (in our example it is named
“Memo8”).
We will use the “TStringList" class as an array for storing the sums - we will be storing the
numeric values as strings. The first item in the StringList will correspond to the sum of the first
group, as so on. An integer variable (which we will increment after printing each group) is used
to calculate the group's index number.
PascalScript:
var
List: TStringList;
i: Integer;
begin
end.
C++ Script:
TStringList List;
int i;
The procedure names in the script show which events we have used. They are: “Report.
OnStartReport”, “Report.OnStopReport”, “Page1.OnBeforePrint”, “GroupHeader1.
OnBeforePrint” and “GroupFooter1.OnBeforePrint”. The first two events are called at the
beginning and the end of the report respectively. To create handlers for these two events select
the “Report” object in the object inspector's drop-down list and its properties will appear in the
object inspector. Then switch to the object inspector's “Events” tab and create the handlers.
Why didn't we create the “List” variable in the script's main procedure ? We created it in the
“OnStartReport” event because dynamically created variables should be destroyed after the
report has been finished. It is logical to create dynamic variables in the “OnStartReport” event
and destroy them in the “OnStopReport” event. In other cases (when memory does not need to
be freed on completion of the script) one can use the script's main procedure for initialization of
variables.
The creation and destruction of the “List” variable is straight forward. Now let's see how the
script works. At the start of the page the counter for the current group (the variable “i”) is reset to
zero and it is incremented after each group has been printed (in the “GroupFooter1.
OnBeforePrint” event). The calculated sum is added to “List” in this event before the counter is
incremented. The “GroupHeader1.OnBeforePrint” event does nothing during the first pass (If
“Engine.FinalPass” condition) but during the second pass (when “List” has been filled with
values) the sum corresponding to the current group is retrieved from “List” and is output to the
“Memo8” object to display the sum in the group header. In the finished report, it appears as
follows:
We will use the collection of report variables as an array for storing the group sums. Remember
that report variables are accessed via the “Get” and “Set” functions. Using these functions also
saves us from having to explicitly create and destroy these variables. Our script will look as
follows:
PascalScript:
begin
end.
C++ Script:
As you can see, this script is somewhat simpler. Code in the “GroupFooter1.OnBeforePrint”
handler sets the value of a variable having a name derived from the client number (or any other
identifier which unambiguously identifies the client could be used, for example
<Group."Company">). If there isn't a variable with that name already existing then the script
automatically creates it; otherwise if it does exist then its value is updated. In the
“GroupHeader1.OnBeforePrint” handler the value of the appropriate variable is retrieved.
PascalScript:
C++ Script:
PascalScript:
C++ Script:
Using “Value” instead of an expression enables you to write one multi-purpose handler for the
Please note something else - if an object contains several expressions (for example '[expr1]
[expr2]') it is the value of the last expression that is transferred to the “Value” variable.
The “OnAfterData” event is ideal for calculating the height and width of objects such as “Text”.
That is, if the exact height of a stretched “Text” object containing an expression is needed in a
script you can use this code in the “OnAfterData” event:
PascalScript:
var
MemoHeight: Extended;
begin
MemoHeight := TfrxMemoView(Sender).CalcHeight;
end;
C++ Script:
float MemoHeight;
MemoHeight = TfrxMemoView(Sender).CalcHeight;
If this code were used in the “OnBeforePrint” event the result will be the height of the object
containing the expression before the expression is evaluated, and not its actual value on printing.
Methods:
Method Description
Methods:
Method Description
The “Outline” displays a tree-like structure of the finished report. When any tree node is clicked
the preview pane jumps to the page displaying this node. To display the “Outline” it should be
enabled either by clicking the button in the toolbar of the preview window or by setting the
“Report.PreviewOptions.OutlineVisible” property to True. The “Outline's” width in pixels can be
set there as well : “Report.PreviewOptions.OutlineWidth”.
Method Description
procedure AddItem adds an element having “Text” name at the current tree position
(const Text: String) the current report page and position on the page are linked
to the element
procedure LevelRoot moves the current position in the tree to the root level
procedure LevelUp moves the current position in the tree up one level
The physical dimensions of the page are the “PaperWidth” and “PaperHeight” properties, visible
in the object inspector when the page is selected. So the size of an A4 page is 210 x 297mm.
“PageWidth” and “PageHeight” are the dimensions of the printable region, which is usually less
than the physical dimensions of the page. The size of the printable region is dependent on the
report page properties “LeftMargin”, “TopMargin”, “RightMargin” and “BottomMargin”. The
printable region’s size in pixels is returned by the “Engine.PageWidth” and “Engine.PageHeight”
functions.
Finally, “FreeSpace” is the height of the free space on a page. If there is a "Page Footer" band
on the page, its height is taken into account when calculating the “FreeSpace”. This height is
returned in pixels by the “Engine.FreeSpace” function. Note that after displaying the next band
the free space is reduced on the page, this is taken into account when calculating the
“FreeSpace”.
How are report pages constructed? The FastReport core displays bands on a page as long as
there is enough free space. When there is no more free space left the “Page Footer" band is
printed (if required) and a new blank page is created. As already said, after displaying the next
band the height of free space is reduced. Moreover, display of the next band begins from the
current position, which is defined by coordinates on the X-axis and the Y-axis. The current
position is returned by “Engine.CurX” and “Engine.CurY” respectively. After printing the next
band, CurY automatically increases by the height of the printed band. After a new page is
created “CurY” equals “0.” “CurX” is changed when printing multi-column reports.
“Engine.CurX” and “Engine.CurY” are available not only for reading but also for writing. This
means that bands can be shifted by incrementing or decrementing these values. For example,
in a report resembling this:
PascalScript:
C++ Script:
PascalScript:
C++ Script:
The “Engine.NewPage” method inserts a page break at any required point in a report, following
which printing continues from the top of the new output page. In our example a break can be
inserted after printing the second record:
PascalScript:
C++ Script:
Note that we used the “OnAfterPrint” event (that is to say, after the band has been printed). Also
note that the “Line” system variable returns the sequential number of the record.
The “Engine.NewColumn” method inserts a column break in multi-columned reports. If there are
no more free columns left on the page then a new page is created.
6.15 Anchors
An Anchor is one of the elements in the hyperlink system which enables jumping to any element
connected to the finished report’s object by clicking on it (in the preview window).
Anchor can be set via the “Engine.AddAnchor” method. Anchor has a name and a position within
a report page. To jump to an anchor with a specified name, type the following line into the URL
property of any report object:
#AnchorName
or
#[AnchorName]
Clicking on the object executes a jump to that part of the report where the anchor was added.
Use anchors when constructing a “Contents” table, for example with links to corresponding
chapters. Let's illustrate this in the following example. First we need the familiar “Customer”
table.
Our report will be a multi-page one (with two design pages). We will place the “Contents” table
on the first page and the list of clients on the second page. Clicking on any Content line executes
a jump to the corresponding report element.
Place the following text in the URL property of the “Text” object contained in the data-band
#[Customers."Company"]
and set the font properties to blue and underlined, to simulate the look of a hyperlink.
PascalScript:
C++ Script:
That is all that is needed. Preview the report and make sure that the “hyperlinks” work.
The last thing to be mentioned is the “Engine.GetAnchorPage” function. This function returns the
number of the page on which the corresponding anchor was added and is useful when creating
the “Contents” table. The report must be a two-pass one, otherwise this function cannot be
used.
Almost all bands have the “OutlineText” property to contain a text expression which
automatically creates the tree. The expression is evaluated when creating a report and its value
is added to the tree when the band is printed. So the hierarchy of elements in the tree is similar
to the hierarchy of bands in the report, meaning that the tree will have main and subordinate
elements which correspond to the main and subordinate bands in the report (for example where
the report has two levels of data or has groups). We will use our previous example to show the
Clicking on any element in the tree executes a jump to the corresponding page in the report with
the selected element at the top of the window.
Let's add the second level to the report tree. Just set the “OutlineText” property of the
“MasterData” band to “<Group.“OrderNo”>” and the tree will change to this:
It is evident that navigation right down to order numbers is possible, and that the hierarchy of the
elements in the tree resembles that in the report.
Now we will create a similar tree, but using a script instead of the “OutlineText” property. In the
report clear the “OutlineText” properties of both of the bands and create two event handlers:
“GroupHeader1.OnBeforePrint” and “MasterData1.OnBeforePrint”:
PascalScript:
begin
end.
C++ Script:
Preview the report to make sure that it works in the same way as previously, where the tree was
created automatically. Let's see how the tree is created by the script.
The “Outline.AddItem” method adds a child node to the current tree node and then makes the
child node the current one. So if “AddItem” were called several times in a row it would create the
“ladder” shown here:
Item1
Item2
Item3
...
The “LevelUp” and “LevelRoot” Outline methods are used to control which element is the current
one. The first method moves the cursor to the element located one level up. So this script:
Outline.AddItem('Item1');
Outline.AddItem('Item2');
Outline.AddItem('Item3');
Outline.LevelUp;
Outline.AddItem('Item4');
Item1
Item2
Item3
Item4
This shows that “Item4” is a child element of the “Item2” element. The “LevelRoot” method on
the other hand moves the cursor up to the root of the tree. For example, the script:
Outline.AddItem('Item1');
Outline.AddItem('Item2');
Outline.AddItem('Item3');
Outline.LevelRoot;
Outline.AddItem('Item4');
Item1
Item2
Item3
Item4
Knowing this it is clear how the report works. Before every group title (company name) is output
the root of the tree is made the current element. After that, the list of orders is output, each order
being added as a child element of the company. To ensure that all the orders are located on one
level and not displayed as a “ladder”, the “Outline.LevelUp” method is called after each order
addition to shift the cursor back to the company level.
That is to say the essence of the “OnManualBuild” handler is to give commands to the
FastReport core for displaying bands at particular times. The core does the rest itself : it creates
new pages as soon as there is no free space on the current one, handles scripts attached to
events, etc.
Let's demonstrate a handler using a simple example. This report has two master data bands
which are not connected to data:
The handler will display these bands in alternate order (six times for each one). After six bands
have been displayed a small gap will be inserted.
PascalScript:
begin
for i := 1 to 6 do
begin
{ show two bands }
Engine.ShowBand(MasterData1);
Engine.ShowBand(MasterData2);
{ make a gap }
if i = 3 then
Engine.CurY := Engine.CurY + 10;
end;
end;
C++ Script:
The following example displays the same bands, with a second copy shifted to the right.
PascalScript:
C++Script:
SaveY = Engine.CurY;
for (j = 1; j <= 2; j++)
{
for (i = 1; i <= 6; i++)
{
Engine.ShowBand(MasterData1);
Engine.ShowBand(MasterData2);
if (i == 3)
Engine.CurY = Engine.CurY + 10;
}
Engine.CurY = SaveY;
Engine.CurX = Engine.CurX + 200;
}
}
As you can see, in these examples we controlled only the output of data bands. The rest of the
bands (in our case the “Report title”) were output automatically.
Finally we will show how to construct a report with a “List of clients” (we have shown several
versions before) using the “OnManualBuild” event. This time connect the data band to the data
source.
PascalScript:
C++Script:
DataSet = MasterData1.DataSet;
DataSet.First();
while (!DataSet.Eof)
{
Engine.ShowBand(MasterData1);
DataSet.Next();
}
}
Preview the report to make sure that the script produces a report identical to the standard report.
Note how we got a link to the Dataset - we connected a dataset variable to the data source using
this code:
DataSet := MasterData1.DataSet;
If the MasterData band is not connected to a data source then the link to the required data
source can be made in the following way:
DataSet := Report.GetDataSet('Customers');
Of course, the data source we are interested in must be enabled in the menu “Report > Data…”
dialogue.
PascalScript:
var
Band: TfrxReportTitle;
Memo: TfrxMemoView;
begin
Band := TfrxReportTitle.Create(Page1);
Band.Height := 20;
Memo := TfrxMemoView.Create(Band);
Memo.SetBounds(10, 0, 100, 20);
Memo.Text := 'This memo is created in code';
end.
C++ Script:
TfrxReportTitle Band;
TfrxMemoView Memo;
{
Band = TfrxReportTitle.Create(Page1);
Band.Height = 20;
Memo = TfrxMemoView.Create(Band);
Memo.SetBounds(10, 0, 100, 20);
Memo.Text = "This memo is created in code";
}
Note that we did not destroy the FastReport objects we created in this example. This is not
required as FastReport objects are automatically destroyed by the Delphi application after the
report is completed. Also note that when we create standard Delphi objects in a script (such as
TStringLists) we also have to destroy them in the script, as this will not be done automatically by
the application.
VII
Cross-tab
reports
114 FastReport VCL 6 User's Manual
This kind of report has a tabular structure, which means that it consists of rows and columns. At
design time it is not known how many lines and columns the output table will have. This is why a
report grows not only downwards (as in the types of report previously described) but also
sideways. A typical example of a cross-tab report is shown below.
In the illustration we see a table with two lines (rows) and four columns, where “a” and “b” are
line titles, “1”, “2”, “3” and “4” are column titles, and “a1”..”a4” and “b1”..”b4” are cells. To
construct a report like this we need just one set of data (from a query or a table) which has three
fields and contains the following values:
a 1 a1
a 2 a2
a 3 a3
a 4 a4
b 1 b1
b 2 b2
b 3 b3
b 4 b4
You can see that the first field contains a line letter, the second a column number and the third
the contents of the cell at the intersection of the specified line and column. When outputting the
report FastReport creates a table in memory and fills it with data. So the table expands
dynamically, creating lines and columns where they do not already exist.
In this example the number, or index, of the column is composite, i.e. it consists of two values.
This report is generated from the following data:
a 10 1 a10.1
a 10 2 a10.2
a 20 1 a20.1
a 20 2 a20.2
b 10 1 b10.1
b 10 2 b10.2
b 20 1 b20.1
b 20 2 b20.2
Here the first field contains the line index, as before, the second and third fields contain column
indexes and the last field contains the cell value. Look at how FastReport constructs the
memory table when handling cross-tab data with complex titles:
When outputting the report from this memory table FastReport joins those title cells which have
the same value and are located at the same level.
Here is a more complex cross-tab report, incorporating intermediate and grand totals:
This report is derived from the same data as before. The values in the cells highlighted in the
new color are automatically calculated and are not present in the original data set.
Create a new project in Delphi, place “TTable”, “TfrxDBDataSet” and “TfrxReport” components
on the form and set their properties:
Table1:
DatabaseName = 'c:\Program Files\FastReport 4\Demos\Main'
TableName = 'crosstest.db'
the DatabaseName property, of course, must correspond to the path of your FastReport
installation folder!
frxDBDataSet1:
DataSet = Table1
UserName = 'SimpleCross'
Open the report designer. Firstly connect the data source using the “Report > Data…” menu
item. Then select the “DB cross-tab” object from the designer's object toolbar and click on
the design page to place the object there:
All settings are made using the cross-tab editor. Open it by double-clicking on the object:
You can only use the mouse in this editor to make changes. For our example it is only
necessary to drag fields from the list 2 to lists 3, 4 and 5 (in the diagram above). After that close
the editor by clicking the ОК button. The cross-tab object now shows its structure:
When the report is previewed you will see a table resembling this:
We can also use a set of predefined styles. These are available in the cross-tab editor - click
“Select style” and choose one.
To change the two “Grand Total” texts double-click on each cell, which opens the familiar text
editor where we can type “Total”:
To format the currency values select the first cell (intersection of [Name] and [Year] in our
example), right-click to display the context menu and select “Display Format...”:
Select the required format and close the format editor. All this produces the report:
Let’s use the “MIN” function in our example. Open the cross-tab editor and in list 5 (the “Salary”
field item) click the down arrow.
Select the “MIN” function from the drop-down list. Now we can change the text in the total cells
from “Total” to “Minimum.” The finished report looks like this:
Let's change the column sorting in our example. Let the years be arranged in decreasing order.
To do this, open the cross-tab editor, select the “Year” column element and change the sorting
mode by clicking on the down arrow and selecting Descending:
Close the editor and preview the report. It will look like this:
We have added the “Month” and “Days” fields containing the month number and the number of
working days respectively. Several different reports can be constructed from this data, for
example : salaries of employees over each year, broken down in months.
What kind of a report will we get? It must resemble the report from the previous example but
having the annual data subdivided by month. The cross-tab object must be set up in the same
manner as before. This time we will also drag the “Month” field into the column header list, as
shown here:
Note that FastReport has automatically added a column of intermediate totals, displayed after
each year. This can be turned off in the cross-tab editor by de-selecting the “Subtotal” flag of the
“Year” column element:
Also note that the last column element in the column header list never has a “Subtotal” flag
(including the case of a single element). In our example we do not need intermediate totals for
each month, so the “Subtotal” flag can be turned off.
There is another feature of intermediate totals, if they are used: it might be preferable to head the
intermediate total as “Year + year total” instead of “Total”. In the cross-tab object on the report
page double-click the intermediate total cell and in the text editor type:
On report construction the “[Value]” expression is replaced by the actual value of the column
header in the cell above:
The simplest method of controlling cell width is to add line breaks to the text of intermediate
totals, i.e.:
Total
for[Value]
However, there are circumstances where it is difficult or impossible to sensibly break lines
manually. The cross-tab object has therefore been given both “MinWidth” and “MaxWidth”
properties (referring to cell widths). Both of these properties are only accessible via the object
inspector.
By default “MinWidth” is 0 and “MaxWidth” is 200, which is adequate in most cases. The second
method of controlling cell width is to alter these values according to special requirements.
So in our example we can set both “MinWidth” and “MaxWidth” to 50. This means that a data
cell must be at least 50 pixels wide, even if the cell value would fit into fewer pixels. For large cell
values the cell width is limited to the “MaxWidth” value and the text in the cell is broken as
required. So our example now looks like this:
The third method of controlling cell width is to change cell widths manually. To be able to do this
the AutoSize property must be set to False. The cross-tab cell width can then be changed using
the mouse. In the report page cross-tab object, the mouse cursor changes shape over cell
borders so allowing the borders to be dragged. Here is an example of what can be achieved:
Remember that if auto-size is turned off then the cross-tab will not automatically adjust the cell
widths and heights and you may see something like this in the report preview:
To add highlighting to our example report, assuming we need to change the font color for values
greater than 3000 - select the object representing the table cell and set the highlighting
parameters by clicking the highlight button on the toolbar. The familiar highlighting editor
window will open where this condition can be set:
This is all that is required. Close the editor by clicking on the OK button and preview the report:
Likewise total values can be highlighted, if required, and also cells and lines using the
background and frame color buttons.
Event Description
We can use the following methods of the “Cross-tab” object in these events:
Method Description
Let's show how to highlight the third column (in our example the “November 1999” date). Select
the cross-tab object on the report design page, in the object inspector click on the events tab,
locate the “OnPrintCell” event and create a handler on the code page by double-clicking in the
empty list to the right of the event name. The script editor will appear with the basic declaration
created for you, then add the code required in the empty 'begin...end' block of the declaration:
Pascal script:
C++ Script:
void Cross1OnPrintCell(
TfrxMemoView Memo,
int RowIndex,
int ColumnIndex,
int CellIndex,
Variant RowValues,
Variant ColumnValues,
Variant Value)
{
if (ColumnIndex == 2) { Memo.Color = clRed; }
}
Pascal script:
C++ Script:
void Cross1OnPrintColumnHeader(
TfrxMemoView Memo,
Variant HeaderIndexes,
Variant HeaderValues,
Variant Value)
{
if ((VarToStr(HeaderValues[0]) == "1999") &&
(VarToStr(HeaderValues[1]) == "11"))
{
Memo.Color = clRed;
}
}
This is how the script works: the “OnPrintCell” event handler is called before printing a cell in the
table’s data area (note that cells in the table titles call either the “OnPrintColumnHeader” or the
“OnPrintRowHeader” handler). The “OnPrintCell” handler parameters include: a link to the “Text”
object which represents the table cell (the “Memo” parameter) and the cell’s “address” as the
location of the row, column and cell (cell is relevant if your cross-tab contains multi-leveled cells)
as the “RowIndex”, “ColumnIndex”, and “CellIndex” parameters respectively. The parameter list
also has the header's values specified as Variants (the “RowValues” and “ColumnValues”
parameters) and the “Value” Variant parameter which holds the cell contents.
In our example it is easier to specify the “address” using the “RowIndex” and “ColumnIndex”.
Numbering of columns and rows begins at “0” so “ColumnIndex = 2” refers to the third column.
We could also specify the correct column by looking at its data content (we need the 11th month
of 1999):
Pascal script:
C++ Script:
void Cross1OnPrintCell(
TfrxMemoView Memo,
int RowIndex,
int ColumnIndex,
int CellIndex,
Variant RowValues,
Variant ColumnValues,
Variant Value)
{
if ((VarToStr(ColumnValues[0]) == "1999") &&
(VarToStr(ColumnValues[1]) == "11"))
{
Memo.Color = clRed;
}
}
The “RowValues” and “ColumnValues” parameters are arrays of the Variant type, having a zero
base. The “0” element is at the highest level of the table title, the “1” element is at the next level,
etc. In our example “ColumnValues[0]” contains years and “ColumnValues[1]” contains months.
Why is the “VarToStr” function required? This prevents errors during type conversion. When
working with the Variant type FastReport tries to automatically cast strings to number format,
which in turn can lead to errors when casting the “Total” and “Grand Total'” column values.
The “OnPrintColumnHeader” event handler is called during output of the column title cells. The
parameter list is similar to that of the “OnPrintCell” handler, though in this case the cell's
“address” (“HeaderIndexes” and “HeaderValues” parameters) is in a different form. The
“HeaderValues” parameter holds the same values as the “ColumnValues” and “RowValues” in
the “OnPrintCell” handler. The “HeaderIndexes” parameter is also an array of values of Variant
type, and contains the address of the title cell in a different form: the “0” element is the index at
the highest level in the table title, the “1” one is at the next level, etc. To clarify the principle of cell
numbering refer to the picture below:
In our example it was easier to use the “HeaderValues” parameter, but the following handler
could be used instead:
Pascal script:
C++ Script:
void Cross1OnPrintColumnHeader(
TfrxMemoView Memo,
Variant HeaderIndexes,
Variant HeaderValues,
Variant Value)
{
if ((HeaderIndexes[0] == 0) && (HeaderIndexes[1] == 2)) { Memo.Color =
clRed; }
}
Pascal script:
C++ Script:
void Cross1OnCalcWidth(
int ColumnIndex,
variant ColumnValues,
Extended &Width)
{
if ((VarToStr(ColumnValues[0]) == "1999") &&
(VarToStr(ColumnValues[1]) = "11"))
{
Width = 100;
}
}
To hide a column in our example just set the Width to zero. Note that the totals are not
recalculated as the table is already filled with values at this point.
The “Cross-tab” object is not attached to a DB table. Therefore it has to be filled with data
manually. The “Cross-tab” object has a similar editor to the “DB cross-tab” object, though it
differs in that the dimensions of the table’s titles and cells have to be specified, instead of being
set by the DB fields:
Let's show the use of a “Cross-tab” object with an example. Place a “Cross-tab” object on the
report design page and set its properties as shown above : the number of levels in the rows title
is 1, in the columns title is 2 and in the cells is 1. Let's fill the table with data using the
“OnBeforePrint” event handler:
PascalScript:
C++ Script:
In the handler, data is added to the table through the “TfrxCrossView.AddValue” method. This
method has three parameters, each of them an array of Variant type. The first parameter is the
row value, the second the column value and the third the cell value. Note that the number of
values in each array must match the settings for the object! In our example the object has one
level in the row title, two levels in the column title and one level of cells, so the AddValue
method's Variant array parameters need one value for the rows, two values for the columns and
one value for the cells.
The “AddValue” method can also be used for the “DB cross-tab” object. This allows the insertion
of data which is not derived from the data source attached to the object. If any data is added in
this way it is also summarized with the data from the data source.
A dark red bar is displayed if the cell value is less than 100, yellow if less than 3000 or green if
more that 3000.
Let's start with our report. Place a "DB Cross-tab" object on the report page and set its
properties like this:
Turn off the “Auto-Size” property and set the column widths as shown below:
Now add the shape object to our table by selecting the “Rectangle” object on the object toolbar
and placing it inside the cell:
Change its height and width to 0.2cm and set its top and left properties. Add two more similar
rectangles.
Now create a script that will show the correct number of colored shapes (depending on the cell
value). To do this select the cell and create an “OnBeforePrint” event handler:
Write the following code in the event handler (pay attention to the shape names, so that they
match your objects):
else
begin
DBCross1Object1.Color := $00CC98; // green
DBCross1Object2.Color := $00CC98;
DBCross1Object3.Color := $00CC98;
end;
end;
That's all - preview the report, which will be similar to that shown at the top of this section.
The first six options allow you to show or hide various table elements.
The “Auto size” option is already well known. It allows us to set the table width and height
manually.
The “Border around cells” option allows the drawing of a frame around the cell elements. Here is
an example table with a border (note that the cells themselves don't have borders):
The “Print down then across” option determines how a table is printed across several pages.
Here are two examples showing how this option works (note the page order):
The “Reprint headers on new page” option determines whether table headers are printed on
each new preview page.
The “Side-by-side cells” option is used if you have two or more values in a table cell. It
determines if these cell values are printed side-by-side or stacked one above the other (the
default).
The “Join equal cells” option merges cells horizontally if they contain the same value:
- AddWidth, AddHeight : adds a specified amount of space to the cell width or height. It is taken
into account when the FastReport engine calculates the cell size (the “Auto size” option must
be on)
- NextCross : a pointer to another cross-tab object that will be printed to the side of this one
- NextCrossGap : the gap between the two adjacent cross-tab objects
VIII
Table-type
reports
140 FastReport VCL 6 User's Manual
The "Table" object is made up of rows, columns and cells. It is a simplified analog of Microsoft
Excel table. It looks in the following way:
select the table or any of its elements and place the cursor on the needed column. The
cursor's form changes to a small black arrow.
Column's context menu can also be called in the "Report Tree" window. Open the window,
select the needed column and right click the mouse.
select the table or any of its elements and place the cursor on the border between two
columns. The form of a cursor changes into a horizontal splitter:
select a column and indicate the needed width in the "Width" properties. This property is
accessible in the "Properties" window.
You can also enable the "AutoSize" column property. When running the report, the width of the
column will be calculated automatically. In order to limit the width of the column, you can indicate
the "MinWidth" and "MaxWidth" properties.
Width of the column should never be larger than the page's width.
select the table or any of its elements and place the cursor to the left of the needed row. The
cursor's form changes to a small black arrow:
If you need to select several adjacent rows, then left click the mouse and, without leaving it,
move the mouse to right or to the left, so as to select the adjacent rows.
select the table or any of its elements and place the cursor on the border between two rows.
The cursor's form changes into a vertical splitter:
Left click and move the mouse, in order to change the size of the row.
select the row and indicate the needed height in the "Height" property. This property is
accessible in the "Properties" windows.
You can also enable the row's "AutoSize" property. When the report is run, the height of the row
will be calculated automatically. In order to limit the height of the row, you can use the minimum
height ("MinHeight") and Maximum height ("MaxHeight") properties:
Height of the row should never be larger than the page's height.
Editing the cells' text can be done just like the "Text" object. Besides, you can drag and drop an
element from the "Data" window into the cells.
Border and fill of a cell can be configured with the help of the "Border and Fill" toolbar.
In order to call a cell's context menu, just right click on the cell.
In order to split a cell, call its context menu and choose the "Split cell" item.
"Table";
"Cross-tab";
"Subreport".
In order to add an object into the cell, simply drag it inside the cell. You can freely move an object
between cells, and also take it back beyond the table's boundary.
A cell serves as a container to objects placed into it. This means that, you can use the "Align"
property of an object inside the cell. This allows changing the size of the object when the size of
the cell is changing.
IX
Charts
Charts 145
FastReport can insert charts into a report. The “TfrxChartObject” object from the
FastReport component palette in Delphi is used for this purpoae. The component is based on
the “TeeChart” library which is included in Delphi distribution kit. Alternatively the “TeeChartPro”
library can be purchased separately.
Let's make an example report with a simple chart. The chart will use the “Country” table from the
“DBDEMOS” database that comes with Delphi . The table contains data about countries, their
areas and populations:
Create a new project in Delphi. Place “TTable”, “TfrxDBDataSet”, “TfrxChart” and “TfrxReport”
components on the form and set these properties:
Table1:
DatabaseName = 'DBDEMOS'
TableName = 'country.db'
frxDBDataSet1:
DataSet = Table1
UserName = 'Country'
Open the report designer, create a new report and connect the data source in the “Report >
Data…” dialogue. Add a “Chart” object to the report design page and set its size to 18 cm
wide x 8 cm high. Open its object editor by double-clicking on it.
When first opened the chart editor will appear as in the image shown above. The first task is to
add one or more series to the chart (just one series in our example). Do this by clicking the add
button and selecting the pie chart in the Gallery:
The vertical arrows change the order of the series in the list. To change the name of a series
select the series, then one second later click on it again (note that this is not a double-click).
There are many different types of series available. After a series has been added the options
area 3 becomes active. Here you specify which data should be used for plotting the chart. First
let's choose the dataset in the “DataSet” drop-down list. Then choose the “Label” and “Pie” fields
using their respective drop-down lists, as shown below:
What can be improved in this report? It would be nice to sort the populations in descending
order. Open the chart editor again, select the series in the chart structure and change the sort
order from None to Descending:
If we previewed the report now, we would see that the data in the legend table has been sorted
in descending order.
In our example the chart has 18 values but practically only 8 of them can be seen. Open the
chart editor and set the limit to 8:
If “TopN” is set to zero then there will be no limitation. A name should be entered in “TopN
caption” so that the aggregated values are identified correctly in the legend list. The Sort mode is
irrelevant as the values will always be sorted descending by default.
These basic properties are available when 'Chart' is selected in the Chart Structure:
- Gradient : settings for gradient background fill. Enable the “Gradient.Visible” property to show
gradients
- Legend : settings for the Legend List. The List can be hidden through the “Legend.Visible”
property and its position set through the “Legend.Alignment” property.
The following properties are available when a series has been selected:
Note that all charting capabilities are accessible in the TeeChart Pro library (which can be
bought separately from www.teechart.com). This library contains many types of chart and
inludes a convenient chart and series editor.
Let's demonstrate how this works with a simple example. Place a chart on the report design
page and open the chart editor. Add a series of “Bar chart” type and set these properties, using
semi-colons to separate individual values:
PascalScript:
begin
Chart1.SeriesData[0].XSource := 'Jan;Feb;Mar;Apr';
Chart1.SeriesData[0].YSource := '31;28;31;30';
end.
C++Script:
{
Chart1.SeriesData[0].XSource = "Jan;Feb;Mar;Apr";
Chart1.SeriesData[0].YSource = "31;28;31;30";
SeriesData[0] in this case allows us to set parameters for the first series in the chart. If the chart
has more than one series then refer to them with SeriesData[1], etc.
where Picture1 is the “Picture” object's name and Chart1 is your Delphi chart.
Note: When you have code assigned to the event handlers of the TfrxReport component within
a Delphi application you must preview the report by running the compiled Delphi application. You
cannot preview the report from within the FastReport report designer.
X
Maps
154 FastReport VCL 6 User's Manual
The "Map" object can display two-dimensional maps in the ESRI shapefile format (.shp/.dbf),
Open Street Map (.osm), GPS-track (GPS Exchange File, .gpx). See more details about these
formats here:
http://wikipedia.org/wiki/Shapefile
https://wikipedia.org/wiki/OpenStreetMap
https://wikipedia.org/wiki/GPX
One "Map" object can display one or more layers. Each layer contains its own map.
The minimum and maximum zoom values can be set in the MinZoom and MaxZoom properties.
These properties are changed in the "Object Inspector" window.
To add a new layer, click on the "Add..." button, which opens the following dialog:
If the "ESRI shapefile" layer type is chosen, select how the map data is stored, from:
- the whole map data is embedded in the report file. In this case the report file (.frx) may be
large;
- the report file holds a reference to the map files (.shp/.dbf). This mode is useful if several
reports use the same map files.
Note: Large map files (more than 30Mb) or map files containing a lot of polygons (more than
20,000) slow down report generation.
Set the border color and style of the map polygons and choose the color palette. Note that the
palette is ignored if you configure the color scale (more about this later).
If the "ESRI shapefile" layer type is chosen set the field name which contains the displayed
information. In most cases it's a "NAME" field. The world map included in the FastReport demo
program contains the following fields:
- NAME (eg: Germany)
- ABBREV (eg: Ger.)
- ISO_A2 (eg: DE)
- ISO_A3 (eg: DEU)
Other maps will have a different set of fields.
If the “application geodata” layer type is chosen set the minimum zoom value for displaying the
labels. The default value is 1, meaning the labels are always displayed.
- for map layer of type "ESRI shapefile" the "Data" tab looks like:
Country SalesTotal
------- ----------
USA 500000
Germany 1200000
Russia 300000
The "Zoom the polygon" edit box allows zooming of the polygon with a given name, so it
occupies the whole "Map" object workspace. For example, to zoom Germany on the world map,
type 'Germany' (with quotes) in this edit box.
- for map layer of type "geodata from an application" the "Data" tab looks like:
The color scale consists of several ranges. Each range has the following properties: min value,
max value and color. You can use as many ranges as you need. To set up the color scale set
the number of ranges first and then the properties for each range.
By default all range properties are set to "Auto", meaning FastReport calculates the minimum
and maximum values for each range automatically. The auto color is chosen from three presets
("Start color", "Middle color", "End color"). The "Auto" mode may be suitable in most cases.
When a color scale is set up, an indicator control is displayed in the bottom part of the "Map"
object:
To set the appearance and position of the indicator, select the "Map" element in the layers tree
control and switch to the "Color scale" tab:
The size ranges have the following properties: min value, max value and size (in pixels). You
can use as many ranges as you need. Set the number of ranges first and then set the properties
for each range.
By default all range properties are set to "Auto", meaning FastReport calculates the minimum
and maximum values for each range automatically. The auto size is chosen from two presets
("Start size", "End size"). The "Auto" mode may be suitable in most cases.
XI
Interactive
reports
Interactive reports 165
A FastReport's prepared report can be made interactive. This means that, it will react to the
user's actions in the preview window. You can use the following interaction:
when clicking on the report object, some kind of operation is performed. For example, you can
run detailed report and show it in a separate window;
preview window can show the report outline, which can be used for navigating on the report.
11.1 Hyperlink
Almost all report objects have the "Hyperlink" property. Using this property, you can define an
object's reaction to the mouse click in the preview window.
Choose the type of hyperlink by selecting the radiobutton in the left side of the window. After you
have done, you may click the "Modify the object's appearance..." checkbox at the bottom of the
window. The appearance of the object will change in the following way:
blue color will be set for the text and it will underlined;
a hand cursor form will be set.
In some cases hyperlink needs to be shown in the preview window, but there is no need to print
it. This is easy to do, if you configure the "Visibility" object property. This can be done in the
"Object Inspector" window.
You can indicate the value of the link by using two methods:
In order to use this link type, you first need to define an anchor. In order to do this, use the script
and Engine.AddAnchor method (see more in the "Script/Anchors" topic). Now you can indicate
its name in the hyperlink configurations window. This can be done by using two methods:
You must set the following parameters for this type of hyperlink:
You must set the following parameters for this type of hyperlink:
When you choose a report page, its "Visible" property resets to false. This means that, when the
main report will be built, this page will be skipped.
XII
Dot-Matrix
reports
170 FastReport VCL 6 User's Manual
Earlier we looked at reports intended for printing on standard modern printers (stylus, laser,etc.).
A report sent to a dot-matrix printer will be printed very slowly. FastReport allows the creation of
special reports intended for dot-matrix printers, where only standard font symbols and no
graphic elements are output; this results in a faster printing speed.
Let's see how to build a report of “List” type intended for dot-matrix printing. Earlier we created
this kind of report, see the ”List of clients” report. We will use the same data for the report.
So, start a new project in Delphi, place “TTable”, “TfrxDBDataSet”, “TfrxReport” and
“TfrxDotMatrixExport” components on the form and set their properties:
TTable:
DatabaseName = 'DBDEMOS'
TableName = 'Customer.db'
TfrxDBDataSet:
DataSet = Table1
UserName = ‘Customers’
Open the report designer. Select “File > New…” to open the report wizard dialogue and select
the “Dot-Matrix Report” item:
On clicking ОК an empty design page is shown, marked out for a dot-matrix font:
The object toolbar also changes to show the objects available for dot-matrix printing, these are
“Band”, “Text”, “Line”, “ESC-Command”, “Subreport”, “Cross-tab” and “DBCross-tab” objects.
Other objects cannot be used on a dot-matrix printer.
Place “Report Title”, “Page Header” and “Master Data” bands on the report page:
The placement of Dot-matrix objects is similar to that in ordinary reports. However, these
objects are strictly limited in position and appearance. The objects snap to the grid, the font size
(height) cannot be changed and they cannot be colored. But some font attributes can be
modified by selecting the “Text” object and clicking the “Tt” button on the toolbar:
These font attributes are specific to dot-matrix printing. The report page and all the dot-matrix
objects, excepting bands, have these attributes.
Note: in the designer and in the preview only “Bold”, “Italic” and “Underline” attributes
are implemented on screen. The whole set of attributes is implemented only when
printing.
Let's modify our report using the “Bold” style for the headings. The report is finished and ready
for previewing:
Create a dot-matrix report as in the previous section, choosing a “Dot-Matrix Report”. Place a
“DB cross-tab” object on the report page and open its editor:
The cross-tab editor shows the structure of the output table in dot-matrix mode. The cell font
attributes can be set using the “Tt” button in the toolbar. In all other respects the cross-tab
objects behave as previously described. The previewed report looks like this:
The printer dialogue is similar to the normal one, but has dot-matrix printer specifics. The
printer's commands system must be chosen from the following list before printing (the ESC-
commands):
- Print to file : whether to send the print stream to a file on the hard disk. If enabled then the
normal 'Save As...' dialogue appears
- Page breaks : whether a “Page break” control command is sent on reaching the bottom of the
page. If disabled then printing is unbroken on continuous stationery
- ОЕМ-codepage : whether to perform symbol conversion
- Pseudographic : specifies how to draw vertical and horizontal lines. If disabled then lines are
drawn using -, | and + symbols
This is a standard set that is understood by all models of dot-matrix printer. Certain printer
models can support other commands that are not present in the standard set, for example
printing at 20 character per inch resolution. To be able to send these extra attributes to the
printer use the “ESC-Command” object in the report.
Place the “ESC-Command” object at the correct place on the report page, before any objects
which use the non-standard attributes (e.g. in the top left corner of the page). To set a command
edit the Command property of the object in the object inspector:
XIII
Dialogue forms
178 FastReport VCL 6 User's Manual
As well as the usual report design pages, you can use dialogue forms in a report. Dialogue
forms are created in the usual report designer using the button in the designer toolbar : the
button adds a new dialogue page tab to the report. When switching to the dialogue page tab the
designer workspace changes to show the form, and the object toolbar changes to show the
control objects which can be placed on the form:
13.1 Controls
To use Dialogue form controls in a report place a “TfrxDialogControls” component from the
FastReport component palette on the Delphi project form. Alternatively add “frxDCtrl” to the
“Uses” list. The following controls then become available for use in the report:
All the controls are similar to those used in Delphi. See the FastReport component help for
information on the properties, events and methods of each control.
TfrxLabelControl:
Caption = 'Hello, World!'
TfrxButtonControl:
Caption = 'OK'
Default = True
ModalResult = mrOk
Set the “BorderStyle = bsDialog” property for the form. Both the controls and the form have the
same set of properties as for the corresponding Delphi controls.
When the dialogue form design is complete return to the report design Page1 tab and place a
“Text” object containing the greeting on the page. Preview the report and you will see the
dialogue form:
After clicking on the OK button the dialogue closes and the report is constructed and displayed.
If the dialogue is closed by clicking the system menu “Х” button then the report will not be
constructed. FastReport works like this : if there are dialogue forms in a report, the report is only
constructed after each dialogue has been closed with ModalResult = mrOk, i.e. in this example
by clicking the ОК button,. That is why the “ModalResult” property of the button had to be set to
“mrOk.”
Place a “Text” object containing this text on the report Page1, and set its “AutoWidth” to True:
Preview the report and make sure that the text typed in is successfully displayed in the report.
Other objects in the dialogue can be accessed in a similar way. Since each object has a name
that is unique within the whole report it can be used anywhere within the same report.
Double-click on the “CheckBox” object to create an “OnClick” event handler and enter the
following script:
PascalScript:
C++ Script:
This code is the same as is used in Delphi. On running the report the button responds to the
state of the check box.
Set the “ModalResult” property for the OK and Cancel buttons to mrOk and mrCancel
respectively. Now run the report. First of all the user will be asked to answer questions from the
first dialogue (name, any children), then after clicking ОК, from the second one (childrens’
names). After clicking ОК in the second dialogue the report will be built. FastReport handles
multiple dialogues in this way : the dialogues are displayed in their creation order; each dialogue
is displayed only after the previous one has been closed with “ModalResult = mrOk” (in this
example by clicking each OK button). If any dialogue is closed using the Cancel button or the
system menu “Х” button then building of the report is prevented.
PascalScript:
C++Script:
This code hides the second dialogue (DialogPage2) if the flag is not checked. Preview the report
to see that this works correctly.
Another way of managing the forms is to use the “OnRunDialogs” report event. To create this
event handler select the Report object in the report tree or object inspector and switch to the
“Events” tab in the object inspector. Double-click on the “OnRunDialogs” event to create a
handler:
PascalScript:
C++Script:
The handler works like this : the first dialogue is shown : if it is closed via the ОК button then look
at the state of CheckBox1 : if this state is Checked then show the second dialogue : if the
second dialogue is closed via the ОК button then set Result to True. If the handler returns Result
= True then the preview is built : if Result = False then the report stops running without building a
preview.
XIV
Data access
components
186 FastReport VCL 6 User's Manual
As a rule most reports are based on data sourced from a DB. Delphi provides a variety of
components for linking to DB data and FastReport makes use of these links. Here we discuss
the use of “TTable” and “TQuery” components as data sources for reports, but in general any
TDataSet descendant can be used.
As well as the data access components of Delphi projects, such as the “TfrxDBDataset” that we
have used in our examples so far, there are several specific DB components in FastReport that
can be used in reports, which ones are used being dependent on the choices made during
installation. The principles of data access in FastReport are much the same as those used in
the Delphi environment. Just as in Delphi a component is placed on a dialogue form and its
properties are set in the object inspector. Component design is very flexible and new
components to support different database engines can easily be created (see the Developers
Manual). With the support of the “TfrxDesigner” component, they give end users of an
application the ability to design reports at runtime.
14.1.1 TfrxDBLookupComboBox
This component is used for selecting a value from a look-up dataset.
Property Description
DataSet data source to which the control is connected
ListField name of DB field displayed in the control
KeyField name of DB key field identifying the selected record
KeyValue value of DB key field returned by the selection from the list
Text value of DB list field displayed in the list
AutoOpenDataSet when True the connected data source is opened
automatically after the dialogue's OnActivate event
To connect the control to the look-up dataset enter values for the three properties : “DataSet”,
“ListField” and “KeyField”.
Note that the returned value is available via either the “Text” or the “KeyValue” properties, neither
of which appears in the object inspector. They are accessible only through code. The initial
position of the cursor in the look-up dataset can be set in code using “KeyValue”.
14.1.2 TfrxADOTable
This component is used for accessing a DB table using ADO. The component has the following
properties:
Property Description
DatabaseName connection name (name of the TfrxADODatabase component)
FieldAliases enables aliases to be set for the dataset fields
Filter expression for filtering records
Filtered whether filtered or not
IndexFieldNames names of index fields (for sorting)
IndexName secondary index name
MasterFields fields connected with master dataset
Master master dataset
TableName DB table name
UserName alias for the dataset, used in code
These properties are similar to those of Delphi's “TADOTable” component. To connect the
component to a DB table just set the “DatabaseName” and “TableName” properties. The Table
is opened either by setting “Active” property to True or by calling the “Open” method.
The “FieldAliases” property editor is opened from the object inspector or by double-clicking on
the component. The editor allows the selection of which fields will become available for use in
code and the setting of aliases for these fields and for the dataset as a whole.
The “MasterFields” property editor is used for creating master-detail connections between two
tables. To connect two tables with the master-detail relation a second table must be set in the
“Master” property of the dependent table and the “MasterFields” property editor opened. If the
table has secondary indexes which are to be used then set the “IndexName” property
beforehand.
The editor visually binds the “master” and the “detail” fields of the datasets. When two datasets
are connected in a “Master-Detail” relationship movement within the master dataset
automatically filters the detail dataset so that only records belonging to the current record of the
master dataset are shown.
To connect fields in the two datasets select a field from the list on the left (the detail dataset)
then a field from the list on the right (the master dataset) and click the Add button. The link
between the two fields is then displayed in the bottom list. To clear the bottom list use the Clear
button. The linked fields must of compatible type and be indexed.
14.1.3 TfrxADOQuery
This component executes SQL queries on a DB. It has the following properties:
Property Description
DatabaseName connection name (name of the TfrxADODatabase component)
FieldAliases enables aliases to be set for the dataset fields
Filter expression for filtering records
Filtered whether filtered or not
Master master dataset
Params list of query parameters
SQL Query text
UserName alias for the dataset, used in code
IgnoreDupParams when True allows parameters with duplicate names. The name
of the Query parameters will not be edited in the parameter
editor
The “Active”, “DatabaseName”, “FieldAliases”, “Filter”, “Filtered” and “Master” properties are
similar to those of the “TfrxADOTable” component described above. The “SQL” property has its
own editor for entering the SQL query.
The “Params” property also has its own editor. It is enabled when a Query text contains
parameters.
A parameter can be one of two types : its value either derived from the master-source or set as
a discrete value (either an absolute value, as shown above, or linked to a variable or to an object
property).
When a parameter is derived from the data master-set the “TfrxADOQuery.Master” property has
to be set. This dataset must contain a field of the same name as the parameter. Neither the
parameter type nor its value has to be specified.
14.1.4 TfrxADODataBase
This component is used to connect to a database. Its function is similar to the
“TADOConnection” Delphi component. The component has the following properties:
Property Description
Connected when True the connection is activated
DatabaseName the ADO connection string
LoginPrompt whether to prompt for the password when connecting to the DB
The “LoginPrompt” property defines whether to prompt for the password when connecting to the
DB. When “LoginPrompt” is False a user name and password must be included in the ADO
connection string.
Create a new Delphi project and add one each of “TfrxReport”, “TfrxDesigner”,
“TfrxDialogControls”, “TfrxADOComponents”, "TADOConnection" and "TButton” components to
the form.
ADOConnection1:
LoginPrompt = False
frxADOComponents1:
DefaultDatabase = ADOConnection1
After that, compile and run the project. This is all you need to do to create an end-user runtime
reports designer.
When the “Design” button is clicked the FR report designer opens, containing a blank report.
Let's look at the design of a simple report in this environment.
Click on the “New report” button on the designer toolbar - FastReport creates an
empty report containing “Code”, “Data” and “Page1” tabs. Switch to the “Data” tab and place an
“ADO Table” component on page:
Note that the “Database” property is already connected to our database, because this was
specified in the “TfrxADOComponents.DefaultDatabase” property. But the table name has to be
set now:
TableName = 'Customer'
Switch to the Page1 tab. Connect the “MasterData” band to the table by double-clicking on it and
selecting “ADOTable1” in the dialogue.
Drag the fields shown below from the “Data tree” window to the report page, which will then look
roughly like this:
Switch to the “Data” tab and place an “ADO Query” component on the page. Double-click on it to
open its editor and enter the following SQL text:
Add a dialogue form to the report and place a “Label”, an “Edit” and two “Button” components on
the dialogue form:
Label1:
Caption = 'Select if CustNo greater than'
Edit1:
Text = '2000'
Button1:
Caption = 'OK'
ModalResult = mrOk
Button2:
Caption = 'Cancel'
ModalResult = mrCancel
Open the “Params” property editor of the “Query” component and set the parameter:
After that switch to the report design Page1 and create the report as in the previous example:
When the report is previewed the dialogue prompting for a customer number is displayed. After
a figure is entered and the dialogue has been closed with the ОК button the report is created. All
customers with CustNos larger than that entered are shown.
XV
Report
inheritance
198 FastReport VCL 6 User's Manual
Often a group of reports share some common data - for example, the header/footer with
company logo or other data, like email or address etc. Should the situation arise that some of
this company data needs changing, for example the email address, then it would have to be
done in each report! To avoid this tedious task, report inheritance can be used. What is report
inheritance?
As an example, reports commonly have elements (logo, company name, email etc) typically
placed in the report title and/or page header. A base report can be designed that contains only
these common elements. All other reports can then use the base report and thus contain all of
the common elements, as well as other elements specifically added to each report.
Should something (e.g. logo or email) need changing then the base report would be opened and
the necessary changes made there. All reports inheriting from the base report would then be
amended automatically. In fact, when a report based on inheritance is opened the base report is
opened first of all, followed by the derived one.
First the base report has to be created. Which elements must it contain? They are the logo
bitmap, "Our company" title and email address. Create a new report and place the common
objects in the “ReportTitle”:
Save the report as "base.fr3". In which folder? This depends on how you setup the
“TfrxDesigner” component. By default FastReport searches for base reports in the folder that
contains the application's .exe file. Alternatively a folder for templates can be specified in the
“TfrxDesigner.TemplateDir” property.
Now create the derived report. To do this use “File > New”, select the “Templates” tab in the
dialogue and search for the base report ("base.fr3"). Click the "Inherit the report" checkbox and
press OK:
FastReport will create a report containing all of the objects from the base report. They are
tagged with the "lock" symbol:
What does "lock" symbol mean? It means that these objects cannot be renamed or deleted, nor
can they be moved to another band. Changes to any other property (such as text, color or
frame) can be made. Note that if you change some property of a locked object (for example
color) this change will be stored in the derived report. If you subsequently change the color of
this object in the base report the change will be ignored by the derived report. For example: open
the derived report, change the color of "Our company" to red and save the report. Now open the
base report and set the color for "Our company" to green. When the derived report is opened
again the color of "Our company" is still red. It is therefore preferable to change the properties of
objects having the "lock" symbol back in the base report and not in the derived report.
Let's finish our report. All that is needed is to add page header and master data bands:
Save the report. Now open the derived report and see that the email address has been changed
in this report as well:
What if some objects have to be added to the base report? There is a simple rule : the base and
derived reports cannot contain any objects having the same name. While changing base
reports, it may not be known how many reports use the base report, nor what object names
have been used in these derived reports. So a simple strategy is: when adding objects to base
reports name the objects using a template like 'ReportName_ObjectName'. In our example add
a “Text” object to our report and set its name to 'BaseMemo3'.
There is no restriction on deleting objects from a base report nor on moving them.
Select the "Inherit from base report" option and choose the base report from the list. If necessary
change the Template path to see a different set of templates. Press OK and FastReport will
combine the two reports. The following error message may appear:
This happens if the two reports contain objects having the same name. Objects with duplicated
names can be deleted from the derived report or can be renamed in the derived report.
XVI
Wizards
204 FastReport VCL 6 User's Manual
FastReport provides some wizards that simplify the report creation process. Wizards are found
under “File > New...”:
Icons of type "Standard report" and "Dot-matrix report" create the empty standard and dot-matrix
reports respectively (there is more about dot-matrix reports in previous sections). These new
reports contain one empty page.
Icons of type "Standard report wizard" and "Dot-matrix report wizard" guide the process of
choosing the dataset and fields required for the report, the optional creation of groups and the
selection of data layout. Let's look at a report created with the help of the "Standard report
wizard".
Choose "File > New..." and the "Standard report wizard" icon. The report wizard dialogue
appears:
The dialogue has several tabs. On the first tab choose the data source for the report. All data
sources available in your application are listed here (TfrxDBDataSet components). New data
sources can be created, either tables or queries, using the "New table" or "New query" buttons.
These buttons open the "New table/query" wizard (described later in this chapter). Let's choose
the Customers table. Then press the "Next >>" button.
On the left side is a list of available fields; on the right side a list of fields already selected to
appear in the report. Use the "Add >", "Add all >>", "< Remove" and "<< Remove all" buttons to
move fields from one list to another. Use the buttons to move selected fields up or down in
the list. Let's add the "Company", "Contact", "Phone" and "FAX" fields to the selected fields list
and press the "Next >>" button.
On the next tab one or more groups can be created. FastReport will add the Group header and
Group footer bands to the report.
Group creation is optional. Skip it here by pressing the "Next >>" button.
The next tab sets the page orientation and one of two data layouts - tabular and columnar:
Finally, the last tab lists the available color schemes for your report, again illustrated on the right
side of the dialogue..
When the "Finish" button is pressed the wizard will create the following report:
The connection string must be created using the button which opens the standard Windows
connection dialogue for setting the database and connection parameters. After this the user
name and password can be set, if necessary.
Note: a new connection can be made manually - just place a “TfrxADODatabase” component on
Select the table name. If required, a filter can also be defined, for example:
NB: a new table can be created manually by placing a “TfrxADOTable” component on the
report's Data tab.
The SQL query must be composed here. The visual query builder can be used to do this - click
the button. The query builder is described later in this chapter.
NB: a new query can be created manually by placing a “TfrxADOQuery” component on the
report's Data tab.
1 - toolbar
2 builder workspace
3 list of available tables
4 selected table field properties
Toolbar:
- open SQL file
- save query to file (query diagram is also saved in the file)
- clear builder workspace
- ОK button : save and exit builder
- Cancel button : exit builder without saving
The builder's workspace and the list of available tables support Drag&Drop, i.e. tables can be
dragged onto the workspace with the mouse. Alternatively double-click on a table in the list of
available tables.
To include a field from the table in the query select it in the list:
By “dragging” fields between the tables in the workspace (2) “Join lines” appear. When fields are
joined the compatibility of the types of the joined fields is checked. The builder prevents joins
between type-incompatible fields. To change the join parameters hold the cursor over the “join
line”, right-click and select the Options item. The Link Options dialogue will open, where the join
can be configured, as below:
Click “New report” on the designer toolbar to create a report page having “Report header”,
“First level data” and “Page footer” bands.
Place an “ADO Query” component on the “Data” tab. Double-click on the component to open the
query editor.
Click the button in the query editor to open the query builder window. Select the Customer
table in the list of tables (3) and drag it onto the workspace (alternatively double-click on the
table). Select the CustNo, Company and Phone fields:
That is all that is required for query building. The query text appears on the SQL tab and the
Result tab shows the data returned by the query. Click to close the builder and to return to the
query editor, where the query text is now displayed:
Please Note! If the query text is altered in the query editor then the query diagram of tables and
joins will be lost. Do not alter the query text manually, always open the query builder and modify
the diagram visually.
Clicking in the query editor returns to the report designer. All that is left to do is to connect the
“MasterData” band to the data source and place the required fields on the “MasterData” band.
Earlier we looked at a report working with groups. Let's build a query for this report using the
query builder. We need to compose a query in SQL which will return data from both tables, with
the data grouped on a specific condition. In our example the condition will be CustNo fields in
both tables.
As in the previous example, create a new report and put a “TADOQuery” component on the
page. Open the query editor and then the query builder.
Drag two tables to the work area Customers and Orders. Both tables have a CustNo field
which we will use to join them. Drag the CustNo field from one table to the other table to create a
join between the two tables:
Now the fields to be displayed and the sort field need to be set. Check the "*" field in both tables
and check the CustNo field in the Customer table. The selected fields appear in the field
parameters list. Select the sort order for the CustNo field:
That is all that is needed to complete the Query. The SQL code looks like this:
XVII
Preview, print,
export
Preview, print, export 219
A built report can be displayed and printed or exported into one of the supported formats.
Everything can be done in the preview window.
Key:
1 finished report pages
2 toolbar
3 status bar
4 outline space for either the outline tree (as shown above) or for thumbnails
Printer” panel : select printer on which to print the report; set printer properties, for example
printing quality; choose to print to file.
Pages” panel : select which pages to print (all, current or selected range).
Copies” panel : set number of copies to print. If printing more than one copy and Collate is
checked then the first copy is printed in full, then the second in full, etc. If Collate is not checked
then all copies of the first page are printed followed by all copies of the second page, etc.
Other” panel :
- Print : select which pages to print (All pages, Even pages, Odd pages)
- Order : print pages in direct or reverse order (first page to last, last page to first)
- Duplex : handle duplex by default (report settings are used) or choose one of duplex options:
vertical, horizontal, simplex
- Default mode : prints on the sheet defined in the report. One preview page is printed on each
sheet
- Split big pages : this mode is useful if printing an A3 report on an A4 sheet. One preview page
is printed on more than one sheet. When this mode is chosen the sheet size (“Print on
sheet”) must also be specified.
- Join small pages : this mode is useful if printing an A4 report on an A3 sheet. Two or more
preview pages are printed on one sheet. When this mode is chosen the sheet size (“Print on
sheet”) must also be specified.
- Scale mode : report is printed on specified size of sheet. All report output is scaled. One
preview page is printed on one sheet. When this mode is chosen the sheet size (“Print on
sheet”) must also be specified.
When ОК is clicked the report printing begins. If “Print to file” is checked then the standard “Save
As...” dialogue opens. The report is saved to this file with *.prn extension. The file contains a
copy of the information sent to the printer.
On clicking ОК the search is started and the first occurrence (if any) is highlighted:
To continue searching click F3. The next occurrence (if any) will be highlighted
- file;
- email;
- FTP;
- Dropbox;
- OneDrive;
- Google Drive;
- Box.com.
To save the prepared report (.fp3 file), press the "Save" button in the preview window, then
select the "Prepared report" menu item:
To export the report and save the result, press the "Save" button in the preview window, then
select the export you need. In the export dialogue window, choose the "Save to" option:
When exporting by e-mail the E-mail setup dialogue is opened. Before exporting begins the
sender's email account details should be set on the “Account” tab:
After filling in the necessary fields on the “Account” tab, the message fields on the "E-mail” tab
must be completed:
- Address : e-mail address of recipient; previously used addresses can be selected from the
drop-down list
- Subject : message subject; previously used subjects can be selected from the drop-down list
- Text : message text
- Format : format of exported report attached to the e-mail; select one of the available export
formats; the FastReport (FR3) format is also available for selection
- Advanced export settings : when enabled the OK button opens the appropriate export format
settings dialogue; when disabled default export settings are used
Export via e-mail features: only plain authentication on SMTP servers is supported. If
authentication is not required then it is not necessary to enter “Login” and “Password”.
If a proxy server is used then the URL-address, port, username and password of the proxy
server are set on the Proxy tab:
When all settings have been made click the OK button to save the file to the FTP server.
- click the “More” button: it is located at the bottom of the Dropbox homepage
- choose “Developers” in the drop-down list: you will be directed to the page for developers
- go to “App Console”: it directs you to the list of applications
- click the “Create App” button: the Dropbox will check your email: click Send Email. In your mail
system inbox you will find an email having a “Confirm” button: click the button to confirm your
email address.
Enter the “Application Key” obtained above. You may also choose remote directory on a server.
If a proxy server is used then the URL-address, port, username and password of the proxy
server are set on the Proxy tab:
When all settings have been made click the “OK” button. The browser window will be opened to
login into Dropbox. Then the file will be saved to the Dropbox.
Enter the “Application ID” obtained above. You may also choose remote directory on a server.
If a proxy server is used then the URL-address, port, username and password of the proxy
server are set on the Proxy tab:
When all settings have been made click the “OK” button. The browser window will be opened to
login into OneDrive. Then the file will be saved to the OneDrive.
As a result the next page shows the “Client ID” and “Client secret”.
When exporting to a Google Drive the following dialogue window will be displayed:
If a proxy server is used then the URL-address, port, username and password of the proxy
server are set on the Proxy tab:
When all settings have been made click the “OK” button to save the file to Google Drive.
If a proxy server is used then the URL-address, port, username and password of the proxy
server are set on the Proxy tab:
When all settings have been made click the “OK” button to save the file to Box.com.
FastReport can export to the following formats: PDF, Open Document Spreadsheet, Open
Document Text, Excel 97/2000/XP, Excel XML, Excel 2007, RTF, Word 2007, PowerPoint 2007,
HTML, text, CSV, BMP, Jpeg, Tiff, and Gif. Also, reports can be sent by e-mail in any of these
listed formats.
- 'Layer' : each report object is exported to a separate layer. The exported output approximates
to the original preview.
- 'Table' : export of objects to the output file is by creation of a transitional grid in memory and
then output of this grid. The exported output closely matches the original preview, based on
the assumption that the principles of good report design were followed (see “Report Design
considerations” chapter).
- 'Drawing' : exported objects are captured from the page image. The exported output is a
direct copy of the preview. This method is used when exporting to graphic formats.
When exporting to PDF format a dialogue opens requesting output file settings.
Export settings:
- Compressed : output file is compressed, file-size is reduced but export time is increased
- Embedded fonts : all fonts used in report are contained in the PDF output file, allows accurate
rendering on computers where the fonts are absent; output file size is considerably increased
- Background : graphic image assigned to page background is exported to PDF file; output file
size is considerably increased
- Print optimized : graphic images output in high resolution for accurate printing; this option is
only necessary when a document contains graphics and will be printed; output file size is
considerably increased
- Outline : option is enabled only when report contains an outline; outline is exported to PDF file
- Open after export : exported file is opened immediately after export using default PDF viewer
installed on the computer (for example, Adobe Reader).
FastReport supports export to table (.ods) and text (.odt) files. These files can be opened in
OpenOffice.
When exporting to ODF format a dialogue opens requesting output file settings.
Export settings:
- Continuous : export as a continuous document, without page breaks and without page
headers/footers
- Page breaks : enables page breaks in the document
- WYSIWYG : accurate rendition of previewed report; when disabled optimization is allowed,
reducing the number of lines and columns in the export file
- Background : graphic image assigned to page background(s) is exported to ODF file; output
file size is considerably increased
- Open after export : exported file is opened immediately after export.
Export feature : RichText objects are exported as simple text, export of graphic images is
supported.
When exporting to RTF format a dialogue opens requesting output file settings.
Export settings:
Export feature : RichText objects are fully integrated in RTF format; accuracy of rendering and
file-size depend on how the report was designed, see the “Report Design considerations”
chapter.
When exporting to Word 2007 format a dialogue opens requesting output file settings.
Export settings:
- Open after export output file will be opened immediately after export.
When exporting to Excel format a dialogue opens requesting output file settings.
Data grouping:
- Like the report - each page of prepared report is exported on a separate Excel sheet;
- All in one page - generate continuous document without page breaks and page headers/
footers;
- Chunks. Each chunk has (rows) - each chunk is exported on a separate Excel sheet.
Export settings:
Export features: RichText objects are transferred as simple text, graphic image transfer is
supported.
On exporting to XML format the dialogue box for output file parameter settings appears.
Export parameters:
- Continuous - generate continuous document without page breaks and page headers/footers
- Page breaks enables page breaks in the document
- WYSIWYG accurate rendition of previewed report; when disabled optimization is allowed,
reducing the number of lines and columns in the export file
- Background : background color of report page(s) exported to spreadsheet
- Open Excel after export : exported file is opened immediately after export.
Export features : RichText objects are exported as simple text; graphic images are not
supported.
When exporting to Excel format a dialogue opens requesting output file settings.
Split to sheet:
- Don't split - all report pages are exported to a single Excel sheet;
- Use report pages - each page of prepared report is exported on a separate Excel sheet;
- Rows count - each set of rows is exported on a separate Excel sheet.
Export parameters:
- Continuous - generate continuous document without page breaks and page headers/footers;
- Page breaks includes page breaks in resulting document;
- WYSIWYG accurate rendition of previewed report; when disabled optimization is allowed,
reducing the number of lines and columns in the export file;
- Open Excel after export - exported file is opened immediately after export.
Export features: RichText objects are transferred as simple text, graphic images are supported.
When exporting to PowerPoint format a dialogue opens requesting output file settings.
Export settings:
- Open after export exported file will be opened immediately after export.
When exporting to CSV format a dialogue opens requesting output file settings.
Export settings:
Export features : no layout information (i.e. report design) is included in the export file; graphic
images are not supported.
When exporting to HTML format a dialogue opens requesting output file settings.
Export settings:
- Styles : design styles for text objects exported; when disabled exporting speed is increased,
but detracts from spreadsheet appearance
- All in one folder : all additional files are saved in the same folder as the main file
- Page navigator : special navigator for fast jumping between pages created
- Fixed width : blocks automatic table/diagram width adjustment when changing display
window size
- Multipage : each page exported as a separate file
- Background : graphic image assigned to page background is exported to HTML file
- Pictures : graphic image exported to HTML file
- Open after export : exported file is opened immediately after export using default HTML viewer
installed on the computer.
Export features : export may consist of several files; each graphic image exported to its own file;
RichText objects are exported as simple text; accuracy of rendering and file-size depend on how
the report was designed, see the “Report Design considerations” chapter.
When exporting to Text format a dialogue opens requesting output file settings.
Export settings:
Export features: no layout information (i.e. report design) is included in the export file; graphic
images are not supported: page width is automatically set dependent on the type of text objects
on report page.
- JPEG (Joint Photographic Experts Group) : a compressed format based on an algorithm that
records differences between pixels. It is characterized by high compression at the expense of
graphic accuracy.
- BMP (Windows Device Independent Bitmap) : used for storage of bitmap images used in
Windows. A standard file format for computers under Windows control.
- GIF (Graphics Interchange Format) : hardware independent format was developed for
transmission of bitmap images through networks. Well suited for compressing homogeneous
content (logos, inscriptions, schemes).
- TIFF, TIF (Target Image File Format) : hardware independent format. Today it is one of the
most widespread and reliable in polygraphy and facsimile transmission.
When exporting in the above graphic formats a dialogue opens requesting output file settings.
Export settings:
- Separate files : when enabled each report page is exported to a separate file; filenames are
derived from the specified filename by suffixing an underscore + page number
- Monochrome : exports as a monochrome image
- Crop pages : blank space round the page edges are cropped
- JPEG quality : JPEG compression ratio; only enabled when exporting to JPEG format
- Resolution : graphic resolution of exported image
Export features: when the Separate files is disabled one very large file is created.
Many formats use tabular data presentation, such as HTML, XLS, XML, RTF and CSV. In
contrast to the freedom allowed in FastReport page design, when exporting to these formats the
output cells created for these tables cannot intersect or be arranged in layers. Export filters, as a
rule, take into account these requirements when objects are exported by FastReport, by the use
of special algorithms dealing with intersections and the optimal placing of cells. At object
intersections new columns and lines are created in the output table. This is necessary to enable
FastReport to position objects exactly and to obtain the best correspondence with the original
preview page. A large number of intersecting objects in a report design leads to a large number
of additional columns and rows in the output table. This in turn can lead to the need for editing of
the exported file in its own editor before suitable for further use.
For example, take a report where the design has a slight overlap of two objects in the same
band and the number of records in the report is 150. On export to RTF format 450 lines will be
created (150 rows for each object and 150 rows for the intersection). If we remove the overlap
there would only be 300 rows. For large reports with a large number of objects the difference
would be much greater. This, of course, affects the size of the output file.
Bear this in mind when designing reports intended for export to any of the formats that use the
'table' output method.
When designing tables in reports be aware of the borders of neighboring cells. It is important
that cells do not overlap and are not arranged in layers. The export algorithm may deal with the
cells in an unexpected way and give a result far from that intended. It is best to arrange objects
in such a way that they are placed in line both vertically and horizontally. Guidelines can help to
achieve this.
To use guidelines in FastReport designer just click on the horizontal or vertical ruler at the top or
left edge of the report page and drag the ruler to the required position on the page, where a
guideline will be displayed. You will then be able to place objects aligning to these horizontal and
vertical guidelines.
Grid alignment can also be helpful in placing “Text” objects to avoid them overlapping. The grid is
enabled in the designer Options, where the pitch can also be adjusted : “View > Options > Grid”.
When using frames around “Text” objects it is best to use the object's frame properties, rather
than adding graphic objects like lines and rectangles around the text. Also, try not to use objects
in the background beneath transparent text objects.
Keeping these simple rules in mind will help you to create a report which will look perfect after
export to any format that uses the table-based output method.
Bad Good
The objects are displaced horizontally - they do not line up horizontally with the vertical guideline.
Bad
Good
The objects are overlapping - on export to a table/diagram format additional unnecessary rows
and columns and also three additional cells in the overlap zone are created.
Study of the demo reports included in the FastReport installation is recommended, to help
master the basic principles of good report design.