gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 563
- Last Active
- Roles
- Members, FR Team
Comments
-
Use script variable and calculate running total in the band's OnBeforePrint event
-
Or read about Delphi's Format parameters and use [Format('%3.3d', [Round()])]
-
Use [FormatFloat('000', )] or set FormatStr
-
Attach your report template (fr3) and saved preview pages (fp3) here
-
First way: set TfrxMemoView.DisplayFormat.Kind to fkNumeric, TfrxMemoView.DisplayFormat.FormatStr to 000 Second way: [Format('000', [])]
-
frxReport.Variables := ''''+'TEST Company'+'''';
-
EmbedDesigner demo works OK for me (FR 5.1.12 XE7 and D7)
-
Can you create a small demo project with problem based on standart Delphi's components and local database like MS Access?
-
Try to call Report.Reportoptions.Name := ''''+'Auftragsbestaetigung_'++''''; in the main procedure of the report script begin Report.Reportoptions.Name := ''''+'Auftragsbestaetigung_'++''''; end.
-
wrote: Can you associate a "record" with a Master? Yes, use OnGetValue event
-
Use custom user function and change Report.ReportOptions.Name in the Delphi's code
-
See a demo in the C:\Program Files (x86)\FastReports\FastReport 5\Demos\MasterDetailUDS folder
-
FastReport 5.1.12 and EmbedDesigner demo works OK for me
-
You should use TfrxUserDataset OnFirst, OnNext, OnPrior, OnGetValue, OnCheckEOF events
-
procedure TfrxIBXQuery.UpdateParams; begin   if Assigned(FQuery.Database) {and not (ComponentState in [csDesigning])} then // new code     frxParamsToTParams(Self, FQuery.Params); end;
-
Try procedure MasterData1OnAfterCalcHeight(Sender: TfrxComponent); begin if MasterData1.Height < Engine.FreeSpace then Engine.NewPage; Memo1.Text := ; end;
-
If you use fixed text - you may set TfrxMemoView.AllowExpressions to False
-
Try to use script variable
-
wrote: The TfrxDBDataset doesn't seem to allow for the OnGetText event. Yes, the TfrxDBDataset doesn't supports the OnGetText event.
-
Call rptDataSource.Dataset.DisableControls
-
Did you disable controls for your Data source?
-
Try to use subreport
-
Attach your report template FRDemo "Simple list" report works OK
-
Run-time FR Designer doesn't included in the FR Embarcadero edition
-
FR5 doesn't supports FireDAC for XE7 at this moment
-
Use Chart1.SeriesData.Items[0].Source1
-
wrote: I have 2 MasterData bands and I need the distance between them to remain the same regardless of the number of rows. Attach a sample what you want to get
-
Also check for installed Excel OLE automation object in the your system
-
Attach your report template (fr3) here
-
Try to show your dataset in the TDBGrid and compare it with report