gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 578
- Last Active
- Roles
- Members, FR Team
Comments
-
Try frxreport1.clear; frxReport1.LoadFromFile('C:\Report\etat_caisse.fr3'); frxReport1.DesignReport(); frxReport1.SaveToFile('C:\Report\etat_caisse.fr3');
-
Try to use TfrxReportPage.OnAfterPrint event
-
Try completely reinstall FR: uninstall all instances of FR, remove all FR's files and folders (see system and hidden folders too) and then install FR again wrote: As soon as I run any report, even a test report that only shows 1 line of static t…
-
Try to remove dsk, dproj, dproj.local from your project folder
-
wrote: These features seem to just be in the header type band, but I don't want 2 bands. You should use 2 bands. There are no another option
-
1. PDF/A support was added in the FR 5.3 only 2. PDF/A option use embedded fonts option too, so all PDF/A files have increased size 3. For mobile device usage you should use embedded fonts option
-
Use VarToStr() + VarToStr() Set Filter property for band
-
wrote: I tried it today and reliazied that none of my pdf exports workded corectly. (All the letters was replaced with dots ".") Did you export to PDF with embedded fonts option?
-
Uninstall all instances of FR, remove FR's files and folders (see system and hidden folders too) and then install registered version of FR
-
Should be fixed in 5.3.2
-
Use latest FR 5.3 and export to PDF with embedded fonts option
-
Place Memo3, Memo4 on the child band
-
Do you use FR Embarcadero edition? This edition doesn't supports internal datasets
-
Old versions doesn't stored wrote: If I set "Link with runtime packages" to false, it works fine. I think there is a bug in FastReports 5 VCL This is not FR bug, add FR's packages in the run-time packages list
-
Ignore loading of XE2 packages or open cbproj file in the text editor and replace 16 with 22
-
Also you can see frxVersion.inc
-
See attach
-
FR 5.2.17 have a packages for XE8
-
Is p:\rad\crash.fr3 correct path?
-
Report.EngineOptions.DestroyForms := False; Report.PrintOptions.Copies := 3;
-
[IIF(True,'text line 1' + #13#10 + 'text line 2','other text')] works OK for me
-
Fixed in the latest FR 5.2.12
-
wrote: And the most important condition - solution must be independent of application source code. You can get TfrxBarCode width in the Delphi's code only. Use TfrxBarCodeView.GetRealBounds
-
If you have a sources - see Source\FireDAC folder
-
Try like this: var bc : TfrxBarCode2DView; r : TfrxRect; begin bc := TfrxBarCode2DView(frxReport1.FindObject('BarCode2D1')); bc.Text := '1234567890 test 1234567890 asdf 1234567890'; r := bc.GetRealBounds; bc.Zoom := bc.Width/(r.Right - r.Left); fr…
-
Use TfrxMemoView.CalcHeight to determine and set TfrxShapeView height
-
wrote: Is it a possibility to draw rounded frame of memos ? No. Try to place rounded rectangle on TfrxMemoView
-
Try to update TeeChart or modify frxChart.pas: procedure TfrxChartView.CreateChart; begin FChart := GetChartClass.Create(nil); // FChart := TChart.Create(nil); with FChart do begin Color := clWhite; BevelInner := bvNone; BevelOuter := bvNone; {$IF…
-
Latest FR 5.2.8 supports PDF/A
-
See a sample in the attach