gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 578
- Last Active
- Roles
- Members, FR Team
Comments
-
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
-
Set TfrxPDFExport.ShowDialog to False and set TfrxPDFExport.FileName
-
Try to use TfrxFooter band instead of TfrxReportSummary. Set TfrxMasterData.KeepFooter to True
-
Check CopyNo Delphi variable in the TfrxReport.OnPrintPage event, pass through all Page's (prepared page) objects and change visibility for these objects
-
You should set master-detail link between two datasets on the Delphi's level. This is standart Delphi (not FR) task
-
Set TfrxPDFExport.ShowDialog to False and set TfrxPDFExport.FileName
-
Demo project in the attach
-
wrote: It need include some extra unit ? No any extra unit. poLandscape, poPortrait declared in the standart Delphi's Printers unit
-
wrote: Please can you tell me how to use that macro on that event ? You can't. wrote: How can I find out witch copy is ? Look at TfrxReport.OnPrintPage header procedure TForm1.frxReport1PrintPage(Page: TfrxReportPage; CopyNo: Intege…
-
CopyName# variable is macro variable. It available in the prepared report only, you can't to use it during preparing of report. Use TfrxReport.OnPrintPage event
-
wrote: As I've mentioned before, how can I check what copy is printing , so I can disable another memo object to print in the second copy. Try to use TfrxReport.OnPrintPage event wrote: but still in the two copies of my report the memo wi…
-
Attach your report template (fr3)
-
Try to test and use FR 5: https://www.fast-report.com/en/download/public_files/245/
-
wrote: How can I set a Master-Detail link between datasets? Google "Delphi master detail"
-
wrote: First I wonder why I do not have to tell FR which is the unique ID that connects the two datasets. In this case it is not called 'ID' but 'EqID'. Obviously FR can find the connecting field itself? You should set Master-Detail link bet…
-
- put a memo object with [CopyName#] text inside. It will show a copy name; - go "Code" tab and write a simple script that will give names to each copy. You can also do this in Delphi code; begin   frxGlobalVariables['CopyName0'] := '';    …
-
No any idea without test project with error. Attach test project here or send it to support@fast-report.com
-
Use Memo1.Memo.Text := '10'; X := StrToInt(Memo1.Memo.Text) + 10;
-
Reopen detail dataset in the master's OnAfterScroll event on the Delphi's level
-
https://www.fast-report.com/en/product/fast...rt-fmx/changes/
-
See changes.txt in the FR's folder
-
Place notes section on the TfrxChild band