gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 578
- Last Active
- Roles
- Members, FR Team
Comments
-
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…
-
Don't try to read manual, try to understand it procedure GroupHeader1OnBeforePrint(Sender: TfrxComponent); begin if Engine.FinalPass then Memo8.Text := 'Sum: ' + Get('Sum1' + ); Memo9.Text := 'Sum: ' + Get('Sum2' + ); end; procedure GroupFooter1OnB…
-
Try to set numbers of copies to 1 in the TfrxReport.OnPrintReport event
-
See a Developer's manual "Writing Custom Report Components" chapter wrote: To create a component which displays data from a DB move the DataSet and DataField properties into the ???published??? section and then override the ???GetData??? method.…
-
Can you show your DB field in the TOLEContainer?
-
No, FR4 will not support XE7
-
What version of IDE do you use?
-
wrote: Can be installed at the same time two versions FasteReport Professional: FR4 for Delphi 4 and FR5 for Delphi XE7? Yes, you can wrote: Is Delphi XE7 can work with FastReport 4? No wrote: The latest stable version of FastRep…
-
Modify frxExportPDF.pas       { Write XObject with a picture inside }       Jpg := TJPEGImage.Create;       try         if (Obj.ClassName = 'TfrxBarCodeView') or           (Obj is TfrxCustomLineView) or    …
-
Try to use FR5 with Code128Auto encoding
-
Try to hide componets on all TfrxReport.PreviewPages in the export's OnBeginExport event Show components again in the TfrxReport.OnStopProgress event
-
Do you have a FR sources?
-
Set TfrxPDFExport.PageNumbers := '1,2,3'
-
Try to use TfrxReport.OnProgress event
-
Try to use latest 5.2.3
-
Try to use latest 4.15.13
-
Set Child2.Stretched to True