AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
Zlib is a part of Delphi which is not included to any package. You should turn off the xtradev package to install fr3.
-
It is here: http://www.fast-report.com/en/fr3.php
-
Try to turn off the "pseudographic" option in the "print" dialog.
-
FR3 trial don't have language resources (only english).
-
FR3.0 does not support TRichView. However, you can print it as an image. To do this, place empty "Picture" object in the report. In the TfrxReport.OnBeforePrint do the following: if View.Name = 'Picture1' then begin // load the blob and assign …
-
You can use embedded query and change its SQL dynamically. See the report example in the demos\main, report "Internal query".
-
You can't install FR3 trial on your system because it was compiled with D7 ee, standard teeChart
-
Make your report two-pass. On the first pass, accumulate total products value and use in on the second pass.
-
I just can't due to some restrictions in the FR code. In some cases the object can't be named immediately after creation.
-
Remove all *.dcu, *bpl, *.dcp files before recompiling FS package.
-
See the documentation: Adding a function with the class parameter Since all the parameters are represented as the Variant array type, you need to convert them to objects. Prog.AddMethod('procedure HideButton(Button: TButton)', CallMethod); …
-
Use TfrReport.SaveToStream/LoadFromStream methods. Stream parameter should be of TBlobStream type.
-
In FR3 you can access only TfrxDBDatasets. There is no need to access tables/queries directly. Former DataDictionary now contains only report variables.
-
CreateUniqueName cannot be integrated into constructor.
-
We don't know yet.
-
If frxReport1 contains a dot-matrix report (not a regular report!) it can be printed to dmp printer using frxReport1.Print method. You can buy FR3 at the end of this month.
-
send to tz at fast-report.com
-
You can choose two modes for the preview: double-buffered (no flickers, but slower) and normal (some flickering may occur, but faster). Use TfrxReport.PreviewOptions.DoubleBuffered.
-
It is in the designer, or in the preview?
-
FR3 works as fast as possible. I've made some optimizations in the latest alpha (to open the designer faster). What exactly is working slow on your PC? RichText in FR3 can be justified.
-
We prefer to release full version with documentation and help a bit later (at the end of August).
-
What's wrong with file? It works for me.
-
Breakpoints, run to cursor, step can be done using TfsScript.OnRunLine event, see the demos\main demo.
-
You can save the export to file and then print it yourself. But why do you need this? FR3 prints dmp reports via windows printer, but the speed is the same as lpt printing.
-
  if MethodName = 'CELLS.GET' then    Result := TAdvStringGrid(Instance).Cells[Params[0], Params[1]]   else if MethodName = 'CELLS.SET' then    TAdvStringGrid(Instance).Cells[Params[0], Params[1]] := Params[2]
-
You should add TGrid first (it's not added in the FS by default). Also you should use fsGlobalUnit to add classes. with fsGlobalUnit do begin AddClass(TCustomGrid, 'TCustomControl'); AddClass(TDrawGrid, 'TCustomGrid'); with AddClass(TStringG…
-
I've corrected it in alpha 10. Will out soon.
-
FS supports IDispatch interfaces (see ole demo scripts in the demos\main\scripts\pascal\ole1.pas, ole2.pas).
-
Just set TfrxReport.Preview property to TfrxPreview component.
-
Just the same way as in FR2.x.