gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 557
- Last Active
- Roles
- Members, FR Team
Comments
-
TfrxMemoView(Sender).Text := '[IIF(VarToStr() <> '''', StrToFloat() * 5, '''')]'; or just type in the memo [IIF(VarToStr() <> '', StrToFloat() * 5, '')]
-
See FRDemo "Interactive reports" section "Handle preview clicks" report
-
See FRDemo "Interactive reports" section "Handle preview clicks" report
-
[IIF(VarToStr() <> '', * 5, '')]
-
You may use FieldAliases only. No other settings
-
https://fast-report.com/pbc_download/FR4.6....erManual-en.pdf
-
It will add frxMap unit in the uses list
-
You should create frxlazchartRTTI.pas use frxChartRTTI.pas as a sample. frxChartRTTI.pas will not work for Lazarus
-
Create frxlazchartRTTI.pas like frxChartRTTI.pas
-
Set barcode's Align property to baCenter
-
wrote: But again: Is there a simpler solution? Yes
-
No. You may change TfrxDBDataset.FieldAliases only
-
  TfrxPDFEncBit = (ePrint, eModify, eCopy, eAnnot);   TfrxPDFEncBits = set of TfrxPDFEncBit;
-
Printing a group sum in the group header https://www.fast-report.com/public_download...oups_header.htm
-
Use dcr files from attach
-
procedure TPrepareThread.Execute; var   frxReport1: TfrxReport;   frxPDFExport1: TfrxPDFExport; begin   frxReport1 := TfrxReport.Create(nil);   frxReport1.LoadFromFile(WebApplication.URLBase+'test.fr3');   frxReport1.ShowProgress:=False; …
-
See here: https://www.fast-report.com/public_download..._the_script.htm
-
Ask bay-t program developers to assign TfrxUserDataset with your XML data to use it in the FR
-
Try to uninstall all instances of FR, remove all FR's files and folders (see system and hidden folders too) and then install FR Professional again
-
Printer settings / defaults to handle paper trays? - http://www.fast-report.com/en/forum/?p=/discussion/14025 wrote: First of all, I have a customer who changed printing options on his printer to print in black and white, my report contains …
-
wrote: So, what are my options? Create small demo project with error and send it to support@fast-report.com
-
What FR's edition (Embarcadero, Standard, Professional or Enterprise) do you use? FR Embarcadero edition doesn't have script support
-
FR VCL doesn't have such feature. Try to use TfrxMemoView.Align
-
wrote: FastReport has a large number of built-in standard functions for use in report designs. FastReport also allows custom functions to be written and used. Functions are added using the ???FastScript??? library interface, which is included in F…
-
Modify frxFDComponents.pas type {$IFDEF DELPHI16} Â Â [ComponentPlatformsAttribute(pidWin32 or pidWin64)] {$ENDIF} Â Â TfrxFDComponents = class(TfrxDBComponents) Â Â private
-
Add TfrxMapObject to project
-
No any event. Just assign TfrReport.Dataset with your master dataset
-
Try mytable.Table.Locate
-
wrote: Where can we find the FRv6 Developer's Manual? FR 4 Developer's manual available only https://www.fast-report.com/pbc_download/De...erManual-en.pdf
-
See FR's Developer's manual "Writing Custom DB Engines" chapter