gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 562
- Last Active
- Roles
- Members, FR Team
Comments
-
Try to use PDF printer or SynPDF (see FR's demos)
-
wrote: I've managed to bypass this Problem by using a SQL Statement to order the Datafield. This is one right way. Dataset should be sorted by group conditions
-
What value of TDataModule.ClassGroup do you use? Did you install all XE2 updates?
-
Use TfrxMailExport with MAPI or MSOutlook option. Mail client should be installed, configured and runned
-
wrote: or when I create reports should I do a report for each orientation Yes
-
Modify frxClassRTTI.pas AddEnum('TfrxFormatKind', 'fkText, fkNumeric, fkDateTime, fkBoolean'); Â Â Â Â AddEnum('TfrxFillType', 'ftBrush, ftGradient, ftGlass'); Â Â Â Â AddEnum('TfrxPrintMode', 'pmDefault, pmSplit, pmJoin, pmScale'); //add this line
-
wrote: the child is printed in the footer Use Engine.CurY := Engine.CurY + Engine.FreeSpace - Child1.Height - 0.000001; in the Child's OnBeforePrint event
-
No, FR doesn't have GS1 suppport
-
Use 123&FUNC1;123
-
No, you can't to change this behavior
-
wrote: so there is no implemented function in FR for that? Yes, there is no such function in the FR's script wrote: iif i were that skilled in writing my own functions yet, i would't have to ask Try to read Developer's manual
-
See a Developer's manual https://www.fast-report.com/en/download/public_files/214/ how to create custom functions for FR
-
wrote: The feature matrix is for VCL 5, but Fast Reports on my environment is version 4, maybe there is another -different- feature matrix: do you know about it? No, feature matrix for FR 4 is same
-
You can't to do this in the report's script. Ask your application developer to do this in the Delphi's code
-
Compiled without any error in the recompile.exe What error did you get?
-
Try to set GRP_CLIENTE.KeepTogether to True
-
TfrxMemoView(frxReport1.FindObject('Memo1')).Text := 'test';
-
Attach your report template (fr3) here
-
You may set back picture for TfrxReportPage
-
You can access report's objects while another report template will not be loaded
-
Attach your report template (fr3) and saved preview pages (fp3)
-
frxChart.pas file should be included. At least I can see it in the FR for XE7 LibD21 folder (I don't know is it really included in the XE5) wrote: The frxChart.pas file isn't included so how can I fix the problem? If you don't have frxChart…
-
Does TeeChart included in the Delphi XE6 starter? If no - ignore loading of FR for Tee Chart packages
-
wrote: Why are these filters not available for Lazarus? Because these filters are not converted for Lazarus
-
You may add ValueFromIndex support in the fs_iclassesrtti.pas
-
What TfrxMemoView display format do you use?
-
Do you use barcode with even count of numbers?
-
Use batch report frxReport1.LoadFromFile('1.fr3'); frxReport1.PrepareReport(True); frxReport1.LoadFromFile('2.fr3'); frxReport1.PrepareReport(False); frxReport1.ShowPreparedReport;
-
JasonBlack, Does http://www.softteco.com/ have report solution for FMX?
-
There are frxExportFilters() function in the frxDsgnIntf which returns a pointer of the export filters collection You can register/unregister required export filters: frxDsgnIntf.frxExportFilters.Register(frxXLSExport1); // You can don't call th…