fromthebeginning
fromthebeginning
About
- Username
- fromthebeginning
- Joined
- Visits
- 0
- Last Active
- Roles
- Members
Comments
-
Hi again, My suggestion means that you should set the porperty of TfrxMemoView component *in FastScript*. In your case, the name of TfrxMemoView is 'Memo3', and you are trying to set the value of Delphi side component to the FastReport's comp…
-
In QuickReport, Master-Detail relationship is implemented by using Detail bands and SubDetail bands. On the other hand, in FastReport, these are by using Master bands and Detail bands.
-
> Can Fast Report calculate the balance? Yes. you can refer dataset's value by following way: if you use 'sum' function in the frxMemoView on summary band, then be able to summarize it.
-
you should set 'MasterSource' property of detail dataset, and set link fields ('MasterFields' property). This problem is not related with FastReport.
-
I guess that there is invalid integer conversion in line 1 of the code.
-
If you want to call any procs defined by Delphi code from FastReport, you must register procs into FastReport. for example: function TMainForm.SomeFunc(AParam: Integer): Integer; begin   Result := AParam * 10; end; //OnUserFunction event of f…
-
In FastReport, you can use TfrxMemoView. QR: QRLabel1.Caption := 'some text'; //*Delphi code FR: frxMemoView1.Memo.Text := 'here, too.'; //*FastScript code And... If you want to assign some event handlers in FastReport, you do by same way of…