gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 563
- Last Active
- Roles
- Members, FR Team
Comments
-
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
-
Run recompile.exe and change TeeChart version. Use TeeChartStd9 option
-
Try to use a hack to register empty styles. Uses ... .Vcl.Controls, Vcl.Forms, Vcl.Dialogs, frxClass, Vcl.Themes, Vcl.Styles, frxPreview, Vcl.ComCtrls, Vcl.ToolWin, Vcl.ExtCtrls, Vcl.StdCtrls, frxDock, frxCtrls; ... ... TStyleManager.Engine.Reg…
-
It seems some printer's settings was changed. Try to use TfrxDMPCommand to set printer's settings or play with TfrxDotMatrixExport.EscModel
-
wrote: the FR-Object Inspector contains 'frxReport: TfrxReport' and all the procedures are named 'frxReport...' See Report tree wrote: It's also not obvious that you have to use 'Report.EngineOptions.DestroyForms := False;' to be able t…
-
Use TfrxPictureView, create report with pictures and then export it to PDf
-
wrote: I can show it in delphi Can you attach small demo project?
-
Modify frxClass.pas try case AFormat.Kind of fkNumeric: begin if (Pos('#', AFormat.FormatStr) <> 0) or (Pos('0', AFormat.FormatStr) = 1) then Result := FormatFloat(AFormat.FormatStr, Extended(Value)) //change this line else if (Pos('d', AFor…