gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 577
- Last Active
- Roles
- Members, FR Team
Comments
-
There is no such document for the last version
-
Use const NumberOfSkippedLines = 8; var i: integer; procedure MasterData1OnBeforePrint(Sender: TfrxComponent); begin if MasterData1.Dataset.RecordCount = 1 then begin Engine.CurX := MasterData1.ColumnWidth * (NumberOfSkippedLines mod Maste…
-
When will FastReport FMX support Delphi 10. During this week Delphi 10.4 when starting would not load dclfrxIntIO27.bpl and dclfrxIntIOIndy27.bpl after FR 6.7 update Run FR's recompile.exe with "Run as administrator" option and recompile …
-
Try to use TfrxPreview.Print instead of main.frxReport1.Print;
-
Try to set Engine.CurY before printing of TfrxMemoView: store Engine.CurY; set Engine.CurY; print TfrxMemoView; restore Engine.CurY;
-
Remove second line from tee.inc and contact FR support to get new recompile.exe
-
Did you try to set TfrxPictureView.AutoSize to True?
-
FR 6.7 with Delphi 10.4 support will be available during several next days
-
I know how to print the masterdata rowcount on the group footer Just use COUNT function I want to print the group name with the rowcount as a title, before the rows. Read https://www.fast-report.com/publicdownload/docs/vcl/FR6/HTMLEN/printingthegro…
-
In the FR's designer: menu View - Editors configurator - TfrxChartView - TfrxInPlaceChartEditor set to [evDesigner]
-
Create small demo project and send it to support.com
-
Use (20)80(21)004012261(37)00000126(90)002(400)123456 as barcode's text or ' (20)80(21)004012261(37)00000126(90)002(400)123456' As expression
-
What version of FR do you use? Try to set TfrxReport.EngineOptions.UseFileCache to True Try to test latest FR 6.6.16 too
-
Create small demo project (not code only) to support.com
-
Create small demo project with error and send it to support.com
-
You can set visibility of TfrxReport page in the main procedure of the script only. begin Page2.Visible := False; end.
-
Try to set TfrxDBDataset.Dataset to nil, clear TfrxDBDataset.FieldAliases, set TfrxDBDataset.Dataset = YourDatasetName
-
May be you need to do some changes in the frxRichEdit.pas
-
See procedure frxParamsToTParameters(Query: TfrxCustomQuery; Params: TParameters); as a sample in the frxADOComponents.pas
-
Yes. Try to use TfrxTableCell.Highlight property
-
Yes. Try to use TfrxTableCell.Highlight property
-
Try to use [Report.Calc(<YourDatasetName."YourFieldName">)]
-
procedure PageFooter1OnBeforePrint(Sender: TfrxComponent); begin if Engine.FinalPass then Memo3.Visible := <Page> = <TotalPages>; end;
-
Try to set duplex to simplex in the FR's print dialog
-
Use IIF function
-
Use TfrxReportSummary band or use two-pass report and compare <Page> with <TotalPages>
-
Try to set full permissions for all users for C:\Program Files (x86)\FastReport 6 VCL Standard\LIBD26 folder
-
FR doesn't have such feature
-
You can access to TfrxDBXDatabase.Params (this is TStrings) from Delphi TfrxDBXDatabase(frxReport1.FindObject('DBXDatabase1')).Params.Strings[n] := 'YourNewValue';
-
You can access to TfrxDBXDatabase.Params (this is TStrings) from Delphi TfrxDBXDatabase(frxReport1.FindObject('DBXDatabase1')).Params.Strings[n] := 'YourNewValue';