gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 558
- Last Active
- Roles
- Members, FR Team
Comments
-
Use TfrxReport.OnBeginDoc event
-
Set Boolean variable to true before DesignReport, to false before Show report and use it in the Before connect event
-
Set to false for design, set to true for preview
-
Try to show detail data in the subreport or use additional dataset for chart
-
You may set Connected to False in the TfrxReport.OnBeforeConnect event
-
See a demo project in the attach
-
It seems you don't need inherited report, you should create one SQL which will select all data you need wrote: I tried to use relation but it display all records but I want to display specific recors use WHERE in the SQL
-
frxReport1.PrepareReport; frxReport1.PreviewPages.SaveToStream(YourStreamName); Save stream to DB field here
-
wrote: 4*2.06 +2*0.13 = 8.75 4*2.06 +2*0.13 = 8.24 + 0.26 = 8.5
-
Sorry, but OnAfterCalcHeight available in the script only
-
Attach small demo project with error here
-
wrote: Often our team members stuck resolving simple calculations and tasks. Struggling with display formats, calculations in scripts, etc. Did you try to contact FR support (support@fast-report.com)?
-
Do you use latest FR 4.15.13? Should be fixed too See frxPreview.pas: for i := n - 60 to n + 340 do
-
See User's manual: wrote: Report Design considerations The quality of the export output in any format is highly dependent on the quality of the original report design. FastReport can manipulate objects in a large number of ways during report …
-
Should be fixed in the latest FR 5.6.2. Try to test trial version of FR 5: https://www.fast-report.com/en/download/public_files/245/
-
Use two datasets. First - unique A values (master), second - B,C values (detail). Show A values on the stretched TfrxMasterData (TfrxMasterData.Stretched = True). Set TfrxMemoView.StretchMode to smMaxHeight. Place TfrxSubReport on TfrxMasterData. Se…
-
Use TfrxOLEView - it may print first page of PDF
-
Use additional TfrxMasterData with RowCount = 1 to show info when main MasterData don't show. Hide second masterdata in the script when first masterdata printed
-
Use second TfrxReport page and assign TfrxReport.Dataset with contracts dataset. Report will be prepared for each record of dataset
-
Try to group by [Trunc([rmdAttAbnormite."StartTime"] * 2)]
-
You may change page's orientation before preparing of report or in the main procedure of the script
-
See frxPrintDialog.pas: if AllRB.Checked then       AReport.PrintOptions.PageNumbers := ''     else if CurPageRB.Checked then       AReport.PrintOptions.PageNumbers := IntToStr(AReport.PreviewPages.CurPreviewPage)     else    …
-
wrote: There is a way to get the real dimensions of the qrcode (so i can exaplctly place where i want)? var   bc : TfrxBarCode2DView;   r : TfrxRect; begin     bc := TfrxBarCode2DView(frxReport1.FindObject('BarCode2D1'));     bc.…
-
Set band's height in the script to Engine.FreeSpace
-
Change Source\ExportPack\frxExportPDF.pas {$IFDEF WIN64} (*$HPPEMIT '#pragma link "usp10.a"'*) {$ELSE} (*$HPPEMIT '#pragma link "usp10.lib"'*) {$ENDIF} unzip, copy usp10.a from attach to Source\ExportPack folder and recompile all FR's packages by…
-
Convert string to integer. Use StrToInt function for example
-
wrote: and in addition I would think that a footer by definition would print on every page, TfrxPageFooter prints on every page, but I tell about TfrxFooter band
-
Create small demo project with problem and send it to support@fast-report.com or attach it here