Default Avatar

gpi

gpi

About

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

Comments

  • You can't print multiple pages with TfrxOLEView object. You may split your PDF to many PDFs with one page and use TfrxOLEView object for each PDF (page)
  • Can you show all your code? What class of FReport - TfrxReport?
  • You may set TfrxPDFExport->PageNumbers and export a range of pages
    in PDF export Comment by gpi June 2010
  • Uninstall FR, install again and remove frxpngimage.pas, frxpnglang.pas from LibD11 folder wrote: With 4.8 it all compiles successfully ;however with 4.9, I get the following error... delphi11 error: fqb110.dpk(45) Fatal: F1026 File not found:…
  • Try to place TfrxLineView on TfrxPageHeader band
  • I hope that the new version of the FR (FR5) will remain a standart interface
  • 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…