gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 578
- Last Active
- Roles
- Members, FR Team
Comments
-
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
-
The rendering of text by the PDF export in v5.3.11 is not the same as the preview window. None of the fonts I use in my reports are "monospaced" (Tahoma, Calibri etc.). FastReports was correctly rendering text in PDF exports in versions before (and…
-
But FR don't use Adobe Reader for PDF creating. May be you opened PDF in the your application?
-
Try to set TfrxPictureView.HightQuality to True
-
Use [IIF(1=1, 'text1' + '[b]text2[/b]','')]
-
uses frxClass, frxPreview, ComCtrls, ToolWin, Buttons; ... procedure TForm1.ButtonClick(Sender: TObject); begin     ShowMessage('My Button pressed'); end; procedure TForm1.frxReport1Preview(Sender: TObject); var   Button: TSpeedButton; begi…
-
For "Open" button: Следующий обработчик переопределÑет обработчик кнопки "Открыть" uses frxClass, frxPreview, frxPreviewPages, frxRes; type TForm1 = class(TForm)   frxReport1: TfrxReport…
-
It seem better to use two-pass report with TfrxMasterData, TfrxGroupHeader and TfrxGroupFooter bands Set height of TfrxGroupHeader and TfrxGroupFooter bands to true, calculate totals of group on the first pass and show it on the second pass
-
Try uses   Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,   Dialogs, frxClass, frxExportPDF, frxPreview, frxDsgnIntf, Menus; type   TForm1 = class(TForm)     frxReport1: TfrxReport;     frxPDFExport1: Tfr…
-
You can do it in the C++ code only, not in the report's script
-
Did you set TfrxPDFExport.OpenAfterExport to False?
-
SavePrintOptions := TfrxPrintOptions.Create;   SavePrintOptions.Assign(Report.PrintOptions);   DuplexMode := Report.PrintOptions.Duplex;   Report.SelectPrinter;   if Report.PrintOptions.ShowDialog then     with TfrxPrintDialog.Create(Ap…
-
if frxRptNotice <> nil then FreeAndNil(frxRptNotice); frxRptNotice := TfrxReport.Create(nil); frxRptNotice.LoadFromFile(ExtractFileDir(application.ExeName) + '\FastReport\procrptNotice.fr3'); tOrigQry := Trim(TfrxADOQuery(frxRptNotice.DataS…
-
Sorry, but you can print DMP report on matrix printer only. Try to print your report to file and then print text file to the XPS printer
-
First, try to use latest FR 5.3.11 build If error still exists - create support ticket and send your report template (fr3) and saved preview pages (fp3)
-
wrote: v5.3.11 does not fix this problem sadly. I thought the following bullet-points in the Changes.txt file with the update were promising, but no such luck! - Fixed style simulation for Arial Narrow, Arial Unicode MS and Tahoma fonts in the …
-
Use frxReport1.Objects.Move(frxReport1.Objects.IndexOf(frxReport1.Pages[frxReport1.PagesCount - 1]), 1);