gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 556
- Last Active
- Roles
- Members, FR Team
Comments
-
“ExpressionDelimiters” the key to this? Yes, use chars which will not used in the text
-
0.46 or 2.5 pixels is too small. Use 2.5 * fr1cm
-
Try to use TfrxUserDataset
-
Use if (MethodName == "FRFILEEXISTS") { instead of if (MethodName == "FrFileExists") {
-
Try to use in the MasterData2.OnAfterCalcHeight: if Engine.FreeSpace < MasterData2.Height + ReportSummary1.Height + 0.0001 then Engine.NewPage; Engine.CurY := Engine.CurY + Engine.FreeSpace - (MasterData2.Height + ReportSummary1.Height + 0.0001);
-
No, TfrxPDFExport doesn't have such feature
-
Send your current report template (fr3) and prepared report (fp3) to support.com
-
Use TfrxOverlay band
-
Try to set text height for TfrxRichView.RichEdit
-
Uninstall FR, install it again, remove all pas files from FR's LibDXX folder, run FR's recompile.exe and recompile all FR's packages
-
Use INSERT statement in the TfrxADOQuery. Use frxADOQuery1.ExecSQL to execute this query
-
Latest FR FMX 2.7.1 have Delphi 10.4 support
-
If you are use FR 5 - try to change TfrxFDQuery.SQL instead of parameters
-
What does testing of values means? Any test system can't to detect wrong expression. If you want to detect changes - use Git or SVN or any file compare tool
-
Use different datasets (original and copy)
-
Do you use fofferent datasets for each TfrxLookupComboBox?
-
Use latest FR 6.7.3
-
Do you have LibD27x64 folder?
-
You may sort your dsPtnResult dataset. Add new field for sort order and sort dataset by this field
-
Create small demo project with error and send it to support.com
-
What do you want to test in the preview?
-
Set TfrxReportPage.Columns instead of TfrxBand.Columns, but this setting will be fill by whole page's height
-
Try to use absolute path to DataDasarRJ.fr3
-
There is no such document for the last version
-
Use const NumberOfSkippedLines = 8; var i: integer; procedure MasterData1OnBeforePrint(Sender: TfrxComponent); begin if MasterData1.Dataset.RecordCount = 1 then begin Engine.CurX := MasterData1.ColumnWidth * (NumberOfSkippedLines mod Maste…
-
When will FastReport FMX support Delphi 10. During this week Delphi 10.4 when starting would not load dclfrxIntIO27.bpl and dclfrxIntIOIndy27.bpl after FR 6.7 update Run FR's recompile.exe with "Run as administrator" option and recompile …
-
Try to use TfrxPreview.Print instead of main.frxReport1.Print;
-
Try to set Engine.CurY before printing of TfrxMemoView: store Engine.CurY; set Engine.CurY; print TfrxMemoView; restore Engine.CurY;
-
Remove second line from tee.inc and contact FR support to get new recompile.exe
-
Did you try to set TfrxPictureView.AutoSize to True?