gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 591
- Last Active
- Roles
- Members, FR Team
Comments
-
wrote: And there's still no FR FMX2 for 10 Seattle (other than the Embarcadero edition). FR FMX 2.2.9 supports RX with recompile.exe
-
not 9/9, after 9/9
-
Uninstall FastReport FMX Embarcadero Edition, install it again and remove all pas files from LibD23 folder
-
Copy all files in the Sources folder, copy fs.inc in the FastScript folder, copy fqb.inc in the FastQB folder, replace recompile.exe, run recompile.exe and recompile all packages ..and if we don't have the FR Source? Wait for next FR's build af…
-
TfrxReportPage(frxReport1.FindObject('Page1')).PageCount := ...
-
If you have a sources - use packages and recompile.exe from attach
-
Send your fr3 file to support: support@fast-report.com or create support ticket
-
Set TfrxBIFFExport.DeleteEmptyRows to True
-
procedure TForm1.frxReport1Preview(Sender: TObject); var   frmPreview: TfrxPreviewForm; begin   frxReport1.PreviewOptions.Modal := False;   frmPreview := TfrxPreviewForm(frxReport1.PreviewForm);   frmPreview.BorderStyle := bsNone;   f…
-
Also try to run FR's recompile.exe as administrator and recompile all FR's packages
-
Modify frxClassRTTI.pas: AddEnum('TfrxFormatKind', 'fkText, fkNumeric, fkDateTime, fkBoolean'); AddEnum('TfrxFillType', 'ftBrush, ftGradient, ftGlass'); AddEnumSet('TfrxVisibilityTypes', 'vsPreview, vsExport, vsPrint'); //add this line Modify f…
-
FR 5.3.13 - works OK
-
Try to use in the DBCross.OnCalcHeight event if DBCross1.IsTotalRow(RowIndex) and DBCross1.IsTotalRow(RowIndex-2) then Height:=0;
-
What type of script (Pascal, C, Basic, Java) do you use?
-
Attach your report template (fr3), saved preview pages (fp3) and a sample what you want to get
-
Try Engine.AddAnchor(Report.Calc(anchor));
-
Try to write custom report component See Developer's manual "Writing Custom Report Components" chapter
-
wrote: WHY !. dry.gif Expression should be boolean, not integer. FR3, FR4 error was fixed
-
wrote: Currently I am doing this via all code. Which works, but very complicated at times as more stuff added. I think this is better solution. Also you can use child band for each TfrxMemoview and show/hide whole band or use IIF function and…
-
Try to set ShiftMode to smDontShift, StretchMode to smActualHeight or smDontStretch for all TfrxMemoViews
-
FR VCL doesn't supports GS1-128 barcodes
-
Uninstall all instances of FR, remove all FR's files and folders (see system and hidden folders too) and then install FR Standart again
-
wrote: Last time i did something similar i opened the vcl fr3 with fmx designer and changed the colors and saved fr3 again with fmx designer. The rest was working the same. This will works but some FR5 features will not available in the FR F…
-
See here: https://www.fast-report.com/en/product/fast...-vcl-5/changes/
-
Check TfrxReport.PreviewPages.Count after preparing of report
-
Modify frxExportXLSX.pas { row breaks } if SingleSheet and (FMatrix.PagesCount < 1025) and FExportPageBreaks then //change this line begin StrList := TStringList.Create; j := 0; for i := m.FirstRow to m.LastRow do if FMatrix.GetCellYPos(i) >…
-
You may show/hide report pages in the main procedure of the script Page1.Visible := MasterData1.Dataset.RecordCount > 0;
-
Try to use two-pass report and TotalPages variable instead of TotalPages#
-
In the next build of FR (5.3.12) will be added: wrote: + Added TfrxMailExport.SMTPStartCommand (HELO,EHLO) property