Default Avatar

gpi

gpi

About

Username
gpi
Joined
Visits
563
Last Active
Roles
Members, FR Team

Comments

  • I think richedit is not thread-safe
    in THandle Comment by gpi July 2015
  • 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
    in Pictures Quilty Comment by gpi June 2015
  • 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…
    in Merge Reports Comment by gpi June 2015
  • 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);
    in Reorder pages Comment by gpi June 2015
  • Try frxreport1.clear; frxReport1.LoadFromFile('C:\Report\etat_caisse.fr3'); frxReport1.DesignReport(); frxReport1.SaveToFile('C:\Report\etat_caisse.fr3');
  • Try to use TfrxReportPage.OnAfterPrint event
  • Try completely reinstall FR: uninstall all instances of FR, remove all FR's files and folders (see system and hidden folders too) and then install FR again wrote: As soon as I run any report, even a test report that only shows 1 line of static t…
  • Try to remove dsk, dproj, dproj.local from your project folder
  • wrote: These features seem to just be in the header type band, but I don't want 2 bands. You should use 2 bands. There are no another option
  • 1. PDF/A support was added in the FR 5.3 only 2. PDF/A option use embedded fonts option too, so all PDF/A files have increased size 3. For mobile device usage you should use embedded fonts option
  • Use VarToStr() + VarToStr() Set Filter property for band