gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 578
- Last Active
- Roles
- Members, FR Team
Comments
-
Sorry, FR doesn't have such feature
-
Try to set full permissions for all users for FR's LibD21 folder
-
Modify frxClass.pas: procedure TfrxReport.WriteVariables(Writer: TWriter); begin // frxWriteCollection(FVariables, Writer, Self); end;
-
unit Unit1; interface uses   Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,   Dialogs, frxClass, frxPreview, frxPreviewPageSettings; type   TForm1 = class(TForm)     frxReport1: TfrxReport;     procedure …
-
Yes, you can. Set Engine.CurY := Engine.CurY + Engine.FreeSpace - Band.Height - 0.0001 before band's printing
-
and this is a red one works OK for me in the 4.9.314
-
You may use Code128 barcode
-
I don't know about such import tool
-
Did you install frxAddFunctionLibrary 5.00?
-
TfrxMemoView.HideZeros = True
-
[ReplaceStr('TestTestTest', 'T', 't')]
-
wrote: how to correctly convert frx file to fr3 file ? Open FR.Net designer, load frx, save it as fr3, correct fr3 manually in the FR VCL designer
-
FR uses ZLib unit for x64 {$IFDEF CPUX64} {$IFNDEF FPC} ZLib, {$ELSE} frxZLib, {$ENDIF} {$ELSE} frxZLib, {$ENDIF}
-
Use frxAddFunctionLibrary 5.00 http://www.fast-report.com/en/forum/?p=/discussion/11633 or create custom user function
-
Use TfrxMemoView(frxReport1.FindObject('Memo1')).Left := ...
-
Create small demo project with problem based on standart Delphi's components and local database like FRDemo database and send it to support@fast-report.com
-
pChart->SeriesData->Items[0]->Source1 = "88;12"; pChart->SeriesData->Items[0]->Source2 = "88;12";
-
Try to use chart with fixed data and fill it in the script. But, it seems better to use TfrxMemoViews with calculated width
-
Modify TfrxGroupHeader content in the TfrxGroupHeader.OnAfterPrint event, restore it in the TfrxGroupFooter.OnBeforePrint event
-
Create small demo project with standart Delphi's components and locsl database like FRDemo database and send it to support@fast-report.com
-
Uninstall FR, install it again and remove all pas files from FR's LibD25 folder
-
Easy way: use TfrxDetailData band with RowCount = 1 instead of TfrxHeader band
-
set height of TfrxOverlay band = height of TfrxReport page without margins (by mouse in the FR Designer) If you use code only - look at Object Inspector (PaperHeight property - height of paper in mm, paper's margins in mm too)
-
Set TfrxOverlay.Height = Page.Height
-
Try [IIF( = null, , )] TfrxReport.EngineOptions.ConvertNulls should be False
-
You should install FR's design-time packages dclFMXf*25.bpl instead of FMXf*25.bpl run-time packages
-
Change Engine.CurY in the TfrxGroupFooter.OnAfterCalcHeight event if Engine.FreeSpace < GroupFooter1.Height then Engine.NewPage; Engine.CurY := Engine.CurY + Engine.FreeSpace -GroupFooter1.Height - 0.000001;
-
Try to build composite report, create report for each image, set TfrxReportPage size before preparing of report
-
You may change TfrxReportPage size before preparing of report or after preparing of report, not during repor's preparing. Do you want to show one MasterData band on the page?
-
Works OK in the script procedure Cross1OnPrintCell(Memo: TfrxMemoView; RowIndex, ColumnIndex, CellIndex: Integer; RowValues, ColumnValues, Value: Variant); begin     if ColumnIndex = 0 then     Memo.HAlign := haRight   else     Memo.HA…