gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 558
- Last Active
- Roles
- Members, FR Team
Comments
-
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…
-
Try to set text alignment in the TfrxCrossView.OnPrintCell script event
-
tme wrote: » It doesn't work. Works OK in the FRDemo 1.fr3
-
Try ( MOD 2)=0
-
Sorry, but free FR Embarcadero edition doesn't have script support
-
Bimmer_R wrote: » Having 5+ reports in its own tab of preview. How to mail these reports as separate pdf in one email to a client? So one email gets 5+ attachments. Can this be solved with user function also? Try to play with FileNames…
-
Add TfrxPreview Set TfrxPreview.EachReportInTab to True Set TfrxReport.Preview := frxPreview1;
-
akai1203 wrote: » could someone help me ? Create support ticket in the FR.Net category or write to support@fast-report.com
-
wrote: I'm trying to make a report, where i need to make 2 nested subreports, but i need both to have PrintOnParent. Sorry, but you can't to do this