gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 591
- Last Active
- Roles
- Members, FR Team
Comments
-
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…
-
As I know, FireDAC available in the XE4 and higher For XE3 AnyDAC which have DB Engine for FR is available
-
    Var     NewCopies : integer; procedure frxReportOnReportPrint(Sender: TfrxComponent); begin   NewCopies := Report.PrintOptions.Copies;   Set('NumPrinted', + NewCopies); end; begin     Report.EngineOptions.DestroyForms := Fals…
-
Set TfrxFDComponents.DesignTimeExpr to False
-
Rich edit is platform-dependent component, so it doesn't available for Lazarus
-
Do you have installed Delphi's compiler dcc32?
-
Try TfrxMemoView(frxReport1.FindObject('Memo1')).Text := 'test';
-
wrote: I don't want to be rude, but did you have a look to the attached file ? No, as you can see wrote: Attached File frxAddDB.pas ( 2.42k ) Number of downloads: 0 Attached File frxAddDBRTTI.pas ( 1.69k ) Number of downloads: 0 S…