gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 591
- Last Active
- Roles
- Members, FR Team
Comments
-
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 …
-
Sorry, but FR doesn't have such feature
-
There is no such component. You should use several objects (TfrxShapeView, TfrxMemoView, TfrxCheckboxView)
-
Does your printer driver supports continuous paper? Set it in the TfrxReportPage settings
-
1. TfrxDBDataset.CloseDatasource = False 2. property Buttons : TfrxPreviewButtons; Description A set of buttons, which will be available in the preview window. The available values of this property are the following: pbPrint - printing pbLoad -…
-
Try to use ReportTitle MasterData for mdComments Header 1 (this data needs to stay together) Child1 for Header 1 (this data needs to stay together) Child2 for Child1 (this data needs to stay together) MasterData for mdNotes Child1 for mdNot…
-
Place stretched TfrxPictureView on the stretched band