gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 591
- Last Active
- Roles
- Members, FR Team
Comments
-
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
-
1. Yes, you should run uinstaller for FR 5.3.xx 2. Web installer will be available later 3. You may install FR for several IDEs
-
Henk v wrote: » That will be soon?? I think - yes
-
Remove all FR's bpl files from system32 folder, run recompile.exe and recompile all FR's packages But better wait when FR's installer will be fixed
-
If you have a sources - you may install FR for one IDE, run recompile.exe and compile FR's packages for any IDE
-
Clear frxDBMedReviewRXSIG.Restrictions
-
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…
-
No, there are no such property
-
wrote: I dont understand how to ignore Just press No button wrote: how that could help when files are missing. It will remove references to uninstalled bpls from IDE
-
Attach your report template (fr3) here
-
Install BDE in the DX, compile frxBDE23.dpk and install dclfrxBDE23.dpk packages
-
See a demo project in the attach. Works OK. Check script language in the your report
-
Yes, it possible. If you have FR Standart and higher. FR Embarcadero Edition which included in the Delphi 10 Seattle doesn't supports internal datasets. You mai assign BDE datasets with TfrxDBDataset only
-
Engine.NewColumn works for multi-column page only Try to set Engine.CurX instead of Engine.NewColumn;
-
If one record fits one page only - assign TfrxReport dataset with your MasterData dataset, clear MasterData dataset and set MasterData.RowCount to 1