AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
Use the TfrxCrossObject component from FR3 component palette.
-
A script should contain the 'begin end.'
-
But you can't work with the calling program while designer is running! Designer is a modal window.
-
Try to modify frxDesgn.pas: TfrxDesignerForm = class(TfrxCustomDesigner) private procedure WMSysCommand(var Message: TWMSysCommand); message WM_SYSCOMMAND; procedure TfrxDesignerForm.WMSysCommand(var Message: TWMSysCommand); begin if Messa…
-
I've fixed the problem, wait for the next release.
-
To set master-detail relation, use the following sql: select * from employeedetail where employeeno=:employeeno and connect detail query to the master table via Master property. Master table should contain the field named "employeeno". Just like i…
-
You should place TfrxCrossView on the band (masterdata with one record).
-
Fixed, wait for the next version.
-
Please send me an example. tz@fast-report.com
-
See http://www.fast-report.com/en/forum/?p=/discussion/2226
-
Works well for me. I have created the 990 pages report and I can see the difference between two modes.
-
In the band.OBP event place the following code: Picture1.LoadFromFile(); it should work.
-
FR uses free barcode library by Andreas Schmidt (see frxBarcod.pas). This library cannot switch codepages for code128 barcodes. I.e. 128C supports only digits.
-
Set the Report.EngineOptions.UseFileCache to True.
-
Set Report.Dataset to dataset that contain N records. The report will be printed N times.
-
Try to assign TfrxUserDataset to TfrxReport.Dataset property. In this case do not use any databands.
-
Use OnAfterData event.
-
Ok, thanks.
-
No, you can't. Cross object handles page breaks itself.
-
Please read the programmer manual.
-
Try Rich1.RichEdit.Lines.LoadFromFile(...)
-
Try to download FR3.15 again, we have uploaded corrected version at jun, 25th.
-
You can do this in the script in the detailband.OnBeforePrint.
-
No, you can't. It's quite difficult.
-
PDF export does not support this.
-
I've tried with frdemo.exe, I have no problems.
-
Try to download 3.15 again. We have fixed something.
-
You should recompile fribx package, use recompile.exe utility. Also I recommend you to download latest 3.15.
-
Multilang.exe is no more shipped with FR3 since 3.15. You should run res\your_lang\mkall.bat file to create resource file. this file can be loaded from your application by this code: uses frxRes; frxResources.LoadFromFile('english.frc');