gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 563
- Last Active
- Roles
- Members, FR Team
Comments
-
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
-
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