gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 578
- Last Active
- Roles
- Members, FR Team
Comments
-
Try to check TfrxReportPage(frxReport1.FindObject('Page1')).PaperSize in the TfrxReport.OnBeginDoc event
-
Uninstall all instances of FR, remove all FR's files and folders (see hidden and system folders too) and then install FR 5.6
-
Pass through all TfrxReport.AllObjects and move controls
-
You may use TfrxChild band. Show main band for one page, child band - for another page
-
FR show ₹ in the preview correctly. See here: https://yadi.sk/d/JUbEOnX93GcmFq
-
What version of Delphi do you use? Attach your report template with Rupee symbol here
-
uses frxBarcode2D; Â Â TfrxBarcode2DView(frxReport1.FindObject('Barcode2D1')).Text := 'https://www.fast-report.com'; Â Â frxReport1.ShowReport();
-
If you use page footer on the all pages - use if Engine.FreeSpace < ReportSummary1.Height then Engine.NewPage; Engine.CurY := Engine.CurY + Engine.FreeSpace - ReportSummary1.Height - 0.00001;
-
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);