gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 578
- Last Active
- Roles
- Members, FR Team
Comments
-
wrote: Why are these filters not available for Lazarus? Because these filters are not converted for Lazarus
-
You may add ValueFromIndex support in the fs_iclassesrtti.pas
-
What TfrxMemoView display format do you use?
-
Do you use barcode with even count of numbers?
-
Use batch report frxReport1.LoadFromFile('1.fr3'); frxReport1.PrepareReport(True); frxReport1.LoadFromFile('2.fr3'); frxReport1.PrepareReport(False); frxReport1.ShowPreparedReport;
-
JasonBlack, Does http://www.softteco.com/ have report solution for FMX?
-
There are frxExportFilters() function in the frxDsgnIntf which returns a pointer of the export filters collection You can register/unregister required export filters: frxDsgnIntf.frxExportFilters.Register(frxXLSExport1); // You can don't call th…
-
See attach
-
wrote: then i had some errors while writing additional code and now my dialog not showing on startup anymore. What additional code do you use? Attach your report template (fr3) here
-
FR 4 doesn't supports XE7 You may upgrade FR4 to FR5
-
Use [IIF(3=3, 'true', 'false')] for Pascal Script or [IIF(3==3,"true","false")] for C++ Script
-
No, you can't. TfrxUserDataSet doen't have FieldAliases property
-
Your code should works if you use really correct bin number
-
frxJPEGExport1.SeparateFiles
-
Use batch report frxReport1.LoadFromFile('1.fr3'); frxReport1.PrepareReport(True); frxReport1.LoadFromFile('2.fr3'); frxReport1.PrepareReport(False); frxReport1.LoadFromFile('3.fr3'); frxReport1.PrepareReport(False); frxReport1.ShowPreparedReport;
-
You may write your own custom user function and use it in the report script. See a Developer's manual for more info
-
Try to check FR for TeeChart package in the IDE's menu Component-Install Packages
-
Use something like this: procedure TForm1.frxDesigner1Show(Sender: TObject); begin   if Sender is TfrxDesignerForm then     begin       TfrxDesignerForm(Sender).OpenB.Visible:=False;     end; end;
-
Use in the Delphi code: var Connect: Boolean; implementation {$R *.dfm} procedure TForm1.FormCreate(Sender: TObject); begin   Connect:=False;   frxReport1.LoadFromFile('C:\test.fr3');   Connect:=True;   TfrxADODataBase(frxReport1.Find…
-
See FR Embarcadero Edition demos in the attach
-
Modify frxDesgnWorkspace.pas: if (c is TfrxView) and (c.AbsTop >= Bnd.Top - 1e-4) and (c.AbsTop < Bnd.Top + Bnd.Height + 1e-4) then           if (((c.Left + 1e-4) < (Bnd.left + Bnd.Width)) and (c.Left > bnd.Left - 1E-4)) or (…
-
If you use stretched ReportSummary band - use OnAfterCalcHeight event, for non-stretched ReportSummary you may use OnBeforePrint or OnAfterCalcHeight events
-
If you use DB data - use OnGetData event in the script or use Uppercase function in the expressions
-
Try to use expressions in the cross
-
wrote: deleting all BPL present on D7 Delete all FR's files in the system. Check VirtualStore folder too
-
Place detail report on the second TfrxReportPage, assign TfrxReport.Dataset with your master dataset
-
Create support ticket and send report template (fr3) and saved preview pages (fp3)
-
Did you install Interbase Express components in the Delphi?
-
New installer should don't block bpls in the system folder Try to redownload it
-
wrote: One thing worth mentionning is that all the source files have been modified with an added comment line at the bottom of the file. The comment is an hexadecimal chain. Is that normal? Yes, this is normal. At least since 2005