gordk
gordk
About
- Username
- gordk
- Location
- St.Catherines On. Canada.
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
anything is possible some are not practical, the crossview method is the quickest and least amount of code writing needed. After reading the programmers manual on how to create reports from code, and you understand the context in which objects are…
-
see the print table demo.
-
I don't think there is a way as the aggregates need to be in a footer to be used. if one of the params of your custom function requires an aggregate value you will probably need to make the report 2 pass gather and store the aggregate value in an a…
-
using fr4.4.45, the latest build Page [Page] of [TotalPages] in page footer works fine
-
yes use the add function method, better is to build a custom function library see the developers manual.
-
the sum function is only used for agrregates in footers other than that set a memos allow expressions prop to true use a variable to store the the sum of the expression by writing code in oap or oad events of memo or obp of band. read the user ma…
-
there are 2 ways in fr3 or 4 1 if vertical lines will be in the same vertical position on every output page. set the report page settings largeheight in design to true below all other bands add an overlayband size it to page height. place vertic…
-
it is by design so that other formats delimiters etc. can be set as desired.
-
read the programmers manual on building reports from code.
-
try ysing current daily build of 4.4 IIRC there was a bug in the stable version.
-
what version and Build?
-
where are you trying to write the code, in the report code or from Delphi?
-
no it just sets the page footer to invisible.
-
make sure the forms uses clause contains a refrence to the frxRich unit.
-
the condition property is a string if you look at the object inspector after setting a datafield as a condition you will see the condition looks like this Musdos_CDSET."MUSDOS_ACE_KOD" so you must use the appropriate number of ' and functions to…
-
the usual connection would be tclientdataset> tdatasource> frxdbdataset tclientdatasets should have mastersource properties set. the error is a delphi generated error and you probably have something set in the tclientdatasets to connect to a…
-
with out seeing the units you developed or the code you are using in the report and the exact error message. it would be strictly a quess. either post your components in the binaries news group or go to main page and start a support ticket.
-
The first thing to understand is where and when bands print(output). title band prints only once at the start of the report, but since you have a child band connected to it the child band on subsequent output pages Astarts below where the title ban…
-
use the line# variable and modulo math in the obp event of the band write code to check the line# variable and use engine.newpage to force the newpage.
-
create the series in the chart editor then in the onbeforeprintmethod of the chart object. use the add method to add values to each series. tip you can connect the query to a hiddendataband set to 1 record then in the obpevent of the chart objec…
-
read the usermanual chapter on crossview good examples there.
-
in design mode clck on the function tab in the datapane on the right side select any function and the requirements will show up in the explanation window at the bottom of the pane. if you are trying to build expressions in memos go to editmode and…
-
use the latest version of the psoft barcode library.
-
simple approach is to use 1 memo set band to stretch, memo to stretch and stretchmode to suit. use the memo.Lines.Add()method to populate the memo by writing code in the obp event of the band or the memo. ie if (expression) then memo1.lines.add(…
-
Tariq use a crossview object in the report, see the printtable demo in the FastReport 4/demos folder only use a query instead.
-
see my answer to your same post in the news group.
-
make sure that you have not set any restrictions on objects.
-
in design mode check the page settings mnu-file-page settings. i would also update to at least the last version of fr3 fr3.23 or 26 ,IIRC, better yet would be fr4.4.currentversion.
-
overlay is a bit of a misnomer, underlay would be a better description, it is actualy the first band handeled by the engine when it exists. it actualy starts printing at the page top so locating objects in it is relatively easy, top of band correspo…
-
Glen here is some sample code for memos memo 3 located in master band below other memos has a fixed height and we wanted detail data from tclientdataset connected to master tclientdataset in this memo. placed a non visible detailband on design pag…