gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 559
- Last Active
- Roles
- Members, FR Team
Comments
-
cika Attach your report template (fr3) and prepared report (fp3) Did you don't show PageFooter on the last page too? Use English if Engine.FreeSpace + PageFooter1.Height < ReportSummary1.Height then Engine.NewPage; Engine.CurY := Engine.CurY…
-
Add TfrxGroupHeader band with unique group condition for each record of MasterData, move all ojects from MasterData to GroupHeader, set MasterData.Height to 0, set GroupHeader.ReprintOnNewPage to True
-
Try to use TfrxDMPCommand to control printer's line feed
-
Attach your report template (fr3), prepared report (fp3) and a sample what you want to get
-
It seems you still have some files from old version Uninstall all instances of FR, remove all FR's files and folders (see system and hidden folders too), remove all references to FR from IDE and then install FR 5.6 again
-
Try to recompile all FR's packages by FR Recompile wizard (recompile.exe) And check "With BDE packages" option
-
Use frxJPEGExport1.SeparateFiles := True;
-
Set correct Top property for all bands
-
https://www.fast-report.com/en/faq/13/102/
-
FR VCL 5.5.12 works OK for me. See a demo project in the attach
-
Attach your report template (fr3)
-
Create user function and call it to send start and end pages to Delphi from report
-
frxPDFExport1.PageNumbers := '1'; frxMailExport1.Address := 'address1@gmail.com'; frxReport1.Export(frxMailExport1); frxPDFExport1.PageNumbers := '2'; frxMailExport1.Address := 'address2@gmail.com'; frxReport1.Export(frxMailExport1);
-
Registered version of FR (Standart, Professional, Enterprise) with 10.2 support will be available during this month
-
Try to set ShiftMode to smDontShift for all objects on the band
-
frxBarcod
-
Create small demo project and attach it here or send to support@fast-report.com
-
No, FR doesn't have such feature
-
Does your MasterData assigned with frxUserDataset?
-
You should override Diff function for TfrxMemoView unit MgrFastReportComponents; interface uses // Delphi System.Types, Classes, Graphics, // FastReport frxClass, frxDesgnEditors; type TMgrIndentMemoView = class(TfrxMemoView) private   FIndentW…
-
Drill down rebuilds report completely, so it may take some time
-
tempT := 15; Â Â PageHeader := TfrxPageHeader.Create(Page);
-
Try PageHeader.Top := tempT;
-
Use Engine.CurY := Engine.CurY + Engine.FreeSpace + PageFooter1.Height - ReportSummary1.Height - 1;
-
Attach your report template (fr3). Use TfrxReport.SaveToFile Also set correct Top position for all bands
-
Modify your code report_runtime.SaveToFile('C:\test.fr3'); report_runtime.PrepareReport(); Â Â report_runtime.DesignReport(); Â Â report_runtime.ShowPreparedReport; and attach test.fr3 here
-
wrote: 3.6 Aggregate functions In most cases group reports need to display some summary information (such as: ???total of a group???, ???number of group elements??? etc). FastReport provides aggregate functions for calculating aggregate values ov…
-
frxreport.ScriptText.Insert(0, 'end;'); frxreport.ScriptText.Insert(0, 'Engine.CurY := Engine.CurY + Engine.FreeSpace - ReportSummary1.Height - 1;'); frxreport.ScriptText.Insert(0, 'Begin'); frxreport.ScriptText.Insert(0, 'procedure ReportSummary1On…
-
1. You should add your script at the begin of frxreport.ScriptText 2. Add ReportSummary.OnBeforePrint := 'ReportSummary1OnBeforePrint'; to your Delphi's code
-
For example for frxExportXLSX.pas: var   f, i, j, k, l, x, y, dx, dy: Integer;   Obj: TfrxIEMObject;   r: TfrxRect;   MCells: array of TRect; // merged cells   StrList: TStrings;   StylesMap: array of Integer;   Pictures: TList; // of …