gordk
gordk
About
- Username
- gordk
- Location
- St.Catherines On. Canada.
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
Make sure printer driver is latest update from manufacturer. try running basic list report from demo app if it prints ok then check your report for pagesize problems or being designed for a specific printer. Last update your fr3 current version i…
-
work with the memo's text property procedure Cross1OnPrintCell(Memo: TfrxMemoView; RowIndex, ColumnIndex, CellIndex: Integer; RowValues, ColumnValues, Value: Variant); begin if memo.text = '' then memo.text :='null'; end;
-
two possible ways procedure ReportSummary1OnBeforePrint(Sender: TfrxComponent); begin if engine.freespace > reportsummary1.height then begin Engine.CurY := Engine.PageHeight -reportsummary1.height -pagefooter1.Height - 1; end; end; isu…
-
see frxdbdataset props make sure that the frxdbdataset connected to the memtable is not opening and closing the memtable
-
see latest 3.18.12 installer has been fixed
-
use the supplied iif function you can test for null in the expression portion of the function if you set engine option convert null to false.
-
Some times it is quick some times it is not. many times the same question has been answered already and a search of the forum or news group will find the answer. and of course if all else fails RTFM. IIRC when you are a registered user your downl…
-
Simple answer No.
-
make sure you uninstall prior fr3 versions first
-
read the programmers manual starting on page 23.
-
Please read the programmers manual on variables.
-
Align the top of your title band with the top of the page, not the top of the bandname.
-
see topic http://www.fast-report.com/en/forum/?p=/discussion/2461
-
Look in the binaries news group i posted a label demo there in 2004. updated flelabel2c IIRC it is till there.
-
You only need to set the report dataset property when building reports that run multi design pages.
-
if TotalHandling is a typed variable created on the script page then the <> are not required. if it is created in the variables list then use the set method. see the users manual on variables.
-
typically at the beginning of report script page declare var of required type. ie var myaccumvar: integer; this creates a variable which is globall to all report events. in obp event of masterband initialize to 0 myaccumvar := 0; in obp …
-
I am not sure if this is available in free report. look at the memos props in the fr object inspector look for charater spacing.
-
Instead of connecting the detail band to a dataset set it to virtual one record. add a subrep object to it use a master band in the subrep and it's data source becomes what was used for your detail and move your detail fields to that master. do t…
-
use a detailband set to virtual 1 record or a child band for the subreport object.
-
When using an frxuserdataset the programmer must write code for all the events of each fruserdataset. you will pass values in using the ongetvalue event of the report component and you will set the bands row count prop as needed. in other words …
-
If you read the manual about inline formatting you will find there is a way to get it correctly placed every time starts on pg66.
-
set the various properties of the report component call prepare call print read about the functions and procedures of the report component in the programmer's manual.
-
is this size available in the printer if not you may have to create a custom size for the printer see the page properties for the printer in the system settings.
-
typically frxreport1.PrintOptions.Printer := 'Canon i350'; the value is a string and must be the same as names shown in the system printers dialog. do it after loading a report and before alling show or prepare.
-
in future please post in the correct forum the fr3 forum. add multiple series using the same data points then set the series active prop to false or true depending on wich one you want.
-
You can use your own variable to track it or for example memo2 in a footer containing the value memo1 in header obp event of memo memo1.text := memo2.text.
-
see page 21 in programmers manual.
-
Enterprise adds web and client server functionality you can read about this in the product pages. fr3 runs with and installs the latest version of fastscript.
-
try working with the oap event of the page footer band.