Default Avatar

gpi

gpi

About

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

Comments

  • See FRDemo section What's new in Fast Report 4 Print copy names report
  • See a demo project here: http://rapidshare.com/files/189351334/test.zip.html
    in Multipage Comment by gpi January 2009
  • or assign TfrxReport.Dataset with your dataset
    in Multipage Comment by gpi January 2009
  • Set TfrxDetailData.Columns, TfrxDetailData.ColumnWidth, TfrxDetailData.ColumnGap
  • Try to use batch report: create report for each record and don't clear previous report using TfrxReport.PrepareReport(False)
    in Multipage Comment by gpi January 2009
  • Add TfrxPreview in your project. Set frxReport1.Preview to frxPreview1 and use frxReport1.ShowReport for show report in frxPreview1
  • You can write user function. See Developer Manual chapter Custom Functions Connection to Report
  • wrote: ...thanks for your answer, but "Page" is always nil in this event... Is Page1 TfrxReportPage exists in your report? wrote: someone else can help me to set page margins in preview? Use procedure TForm1.frxReport1BeginDoc(Sender…
    in OnPrintPage Comment by gpi January 2009
  • rulonv use frxReport1.LoadFromFile('1frf'); frxReport1.SaveToFile('1.fr3');
  • Try to use report with one MasterData and two Detail data bands for different data group for every user
  • I think you must decrease page height in designer
  • You can't to use FB server on port 3051 without "gds_db 3051/tcp" in services
  • You must place bands in such order (set top property) PageHeader GroupHeader MasterData GroupFooter
  • Do you add in services gds_db 3051/tcp ? Can you connect to FR 2.1 from other application?
  • If you print report on laser printer - is scanner can read barcode?
  • Sorry, try TfrxReport.OnBeginDoc procedure TForm1.frxReport1BeginDoc(Sender: TObject); var page: TfrxReportPage; begin      Page:=TfrxReportPage(frxReport1.FindObject('Page1'));      Page.LeftMargin:=20;      Page.RightMargin:=10;    …
    in OnPrintPage Comment by gpi January 2009
  • 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