Default Avatar

gpi

gpi

About

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

Comments

  • TfrxReport.OnPrintPage calls when TfrxReport is printed Try to use TfrxReport.OnBeforePrint event
    in OnPrintPage Comment by gpi January 2009
  • wrote: so I tried other barcode software and the barcode printed normally and scanned successfully with the scanner ! Barcode printer's softvare send special commands for printing barcodes. FR use GDI print Try to increase your printer's res…
  • You may do in main script procedure begin      Page1.LeftMargin:=20;      Page1.RightMargin:=10;      Page1.TopMargin:=10;      Page1.BottomMargin:=10;         end. or in Delphi's code var page: TfrxReportPage; begin   …
  • wrote: "Unsupported one-diskStructure for c:\TEST.FDB file; found 11, support 1. " Your FB server doesn't support ODS11 Install FB 2.1
  • And DMP to GDI converter {******************************************} {                                          } {             FastReport 4                 } {         C…
  • New version: +add TfrxRichView support -fixed bug with converting band's objects {******************************************} {                                          } {             FastRepo…
  • See a demo (modified report from FR Demo) in fast-reports.public.binaries newsgroup
    in lines Comment by gpi January 2009
  • This is impossible without changes of frxDesgn.pas: procedure TfrxDesignerForm.ReloadPages(Index: Integer); var   i: Integer;   c: TfrxPage;   s: String; begin   FDialogForm := nil;   FTabs.Tabs.BeginUpdate;   FTabs.Tabs.Clear;   FTabs…
  • Use TfrxDesigner.OnSaveReport event
  • Try to use IIF function [SUM(IIF( = 'EUR', , 0), MasterData1)]
  • Try to use [IIF(, 'Yes', 'No')] or use TfrxMemoView.DisplayFormat.Kind=fkBoolean TfrxMemoView.DisplayFormat.FormatStr='No,Yes'
    in expressions Comment by gpi January 2009
  • For example use: unit Unit1; interface uses   Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,   Dialogs, StdCtrls, frxDesgn, frxClass, frxADOComponents, DB, ADODB, fqbClass; type   TfqbADOEngine = class(TfqbEngine…
  • Try to use TfrxMemoView.CalcWidth function. But you must set text in TfrxMemoView (go to through all records from your dataset and calculate max width)
  • wrote: What is Update 2? Update pack 2 for Delphi 6
    in Frx6.bpl Comment by gpi December 2008
  • No. You must order your dataset or query
  • Use var kros:TfrxDBCrossView; begin kros:=TfrxDBCrossView(frxreport1.FindObject('Dbcross1')); kros.SetBounds(50,100,60,30); kros.ColumnFields.Add('Year'); kros.ColumnFields.Add('Month'); kros.CornerMemos[1].Text:='Test'; kros.ColumnLevels := 2; kros…
  • You can use many addresses delimited by ";" char
  • Do you install Update 2 for Delphi 6? And use latest FR's build FR 4.7.xx
    in Frx6.bpl Comment by gpi December 2008
  • Try [iif((>0) AND (>0) ,'/////////////////////////////','')]