AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
Change fs_itools.pas: type  TVarRecArray = array of TVarRec; procedure VariantToVarRec(v: Variant; var ar: TVarRecArray); var  i: Integer; begin  SetLength(ar, VarArrayHighBound(v, 1) + 1);  for i := 0 to VarArrayHighBound(v, 1) do …
-
FR3 will contain pdf export.
-
Visit www.fastreports.net/server to see online demo.
-
It's not a FS problem. I think the same code in the Delphi will run slow.
-
In this case you should use OnBeforePrint event of the "Text" object with a number. Event handler should form a string that contains a number and needed amount of spaces.
-
It's hard enough even for me.
-
Solved, thanks for the bug. You can't fix it without sources.
-
It's not a compile-time error, it can't be catched in the FS compiler. Use try..except inside the script to catch this error.
-
I mean exactly this.
-
It is open-source project - you don't need to pay. The project name is SynEdit, it can be found on sourceforge.net.
-
Use Format function, for example Format('%-5.2f', [1.23]) will produce left-aligned number with two trailing spaces. 5 is whole width, 2 is number of digits after decimal point. Such string can be shown in the "Text" object with align=right and wi…
-
I think it does.
-
Use any freeware syntax memo control, such as TSynMemo from sourceforge.net.
-
FastScript editor is a bonus component. Its development is discontinued.
-
1) it is normal behavior in FR3 - I can't improve that. 2) in the alpha 9 it works.
-
Sure. This is FR3 section
-
See "Pricing info" topic below.
-
You can do this for fields of internal data sets (e.g. placed on a TfrxDialogForm). BDETable1.Fields.DisplayLabel := ...
-
The poll is incorrect. Correct question is "will I buy the version with source code".
-
No chance at all - it will require total redesign of the engine.
-
Tabs are not supported.
-
a) yes, it can current FR3 version can't work with native IBO - the frxIBOSet file is incomplete and not tested yet. Final version will can and does not require any inc file editing.
-
I forgot to say - TTable.FindKey is already realized. Look at fs_ibdertti.pas file.
-
It's just a trial version only for testing purposes.
-
Use extra quotes when adding a variable to the Report.Variables: frxReport1.Variables.Variables := '''' + 'N' + '''';
-
Look at realization of the TDataset.Locate method (in the fs_idbrtti.pas).
-
No, you can't do this directly. You can add a function to the script and implement the dll call in your program.
-
Seems empty blob field gives that error. Will fix it.
-
Shadow does not working in shape objects.