AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
Very soon. There is no help topics for SynMemo, it is just bonus component.
-
1: yes, it is. 2: use shift+ctrl+1..9 3: look at demos\main, also read the documentation.
-
When documentation will be finished. About 80% is completed.
-
We'll upload FS1.4 as soon as possible.
-
Wait for FS1.4 if you want to access Form1.Label3. Or, you can add Label3 object by AddObject method and access it as Label3.
-
if you have full source code, change the fs_iinterpreter.pas: procedure TfsPropertyHelper.SetValue(const Value: Variant); var p: PPropInfo; Instance: TObject; IntVal: Integer; begin if IsReadOnly then Exit; Instance := TObject(Integer(Pare…
-
var v: TfsCustomVariable; for i := 0 to fsScript1.Count - 1 do begin v := fsScript.Items; if v is TfsVariable then addtoyourdatabase(v.Name, v.Value) end
-
It will be an export-based solution, providing *exact* DM printout. Can say about timeline, only can suggest to use special reporting tool for dot matrix, like ZReport.
-
Please look at 'Advanced cross-tab' report inside the frdemo.exe. It uses data from DB to build a cross table with complex headers.
-
Looks like this link is broken.
-
No, this ability is not included right now. It will be there in one of betas.
-
What do you mean? I don't use interfaces in the FR source code.
-
You will see the demo version soon.
-
You have to use TfsScript.GetILCode/SetILCode. Please read the documentation.
-
FR3.0 is now alpha7. Everything except the export filters is finished up. Now we working on documentation.
-
It is due to error in the JScript language definition. Wait for FS1.4.
-
I hope it will.
-
Please read the documentation, it has a lot of examples.
-
FR can't print trasparent images.
-
FR uses third-party barcode module. You can only change the zoom.
-
FR.inc settings works with Delphi, not C++Builder. You should open the package and manually add IBO40CRT, IBO40FRT, IBO40TRT, IBO40VRT, IBO40XRT to it.
-
You can remove a reference to fs_iadortti.pas from fs_ireg.pas, fs5.dpk. Also remove VCLADO50 reference from fs5.dpk and TfsADORTTI from fs_ireg.pas.
-
In the script: a := [table."Field"] or, create a variable in the data dictionary and assign field reference to it ([table."Field"]). Each time when you access that variable it will return a field value.
-
You can load the picture either from script or delphi code: script of TfrPictureView: LoadFromFile(filename) delphi code (TfrReport.OnBeforePrint): if View.Name = 'Picture1' then TfrPictureView(View).Picture.LoadFromFile(filename)
-
In the detail data's OnBeforePrint write something like this: if Height + Child1.Height + Child2.Height < FreeSpace then NewPage this won't work if your bands are stretched.
-
did you already tried solution from the FAQ? Also installing newest printer drivers from HP site may help.
-
if you want to group on GROUPA + GROUPB, just assign the following value to the GroupMerge variable (or directly to Groupheader.Condition): [DialogForm.qryAblauf."GROUPA"] + [DialogForm.qryAblauf."GROUPB"]
-
Looks like FR will be suitable for you Each FR object can have a frame with different line styles.
-
You can't do this automatically. However, you can add user function that will return the height of the picture. You can call this function in the Band.OnBeforePrint and adjust its height.
-
It is quite difficult. If your grid fits on one report page, you can build the report manually (i.e. put each memo object (representing one cell) to the page and then run a report.