gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 591
- Last Active
- Roles
- Members, FR Team
Comments
-
Create small demo project (not code only) to support.com
-
Create small demo project with error and send it to support.com
-
You can set visibility of TfrxReport page in the main procedure of the script only. begin Page2.Visible := False; end.
-
Try to set TfrxDBDataset.Dataset to nil, clear TfrxDBDataset.FieldAliases, set TfrxDBDataset.Dataset = YourDatasetName
-
May be you need to do some changes in the frxRichEdit.pas
-
See procedure frxParamsToTParameters(Query: TfrxCustomQuery; Params: TParameters); as a sample in the frxADOComponents.pas
-
Yes. Try to use TfrxTableCell.Highlight property
-
Yes. Try to use TfrxTableCell.Highlight property
-
Try to use [Report.Calc(<YourDatasetName."YourFieldName">)]
-
procedure PageFooter1OnBeforePrint(Sender: TfrxComponent); begin if Engine.FinalPass then Memo3.Visible := <Page> = <TotalPages>; end;
-
Try to set duplex to simplex in the FR's print dialog
-
Use IIF function
-
Use TfrxReportSummary band or use two-pass report and compare <Page> with <TotalPages>
-
Try to set full permissions for all users for C:\Program Files (x86)\FastReport 6 VCL Standard\LIBD26 folder
-
FR doesn't have such feature
-
You can access to TfrxDBXDatabase.Params (this is TStrings) from Delphi TfrxDBXDatabase(frxReport1.FindObject('DBXDatabase1')).Params.Strings[n] := 'YourNewValue';
-
You can access to TfrxDBXDatabase.Params (this is TStrings) from Delphi TfrxDBXDatabase(frxReport1.FindObject('DBXDatabase1')).Params.Strings[n] := 'YourNewValue';
-
You may set visibility of TfrxReportPage in the main procedure of the script
-
Create small demo project with error and send it to support.com
-
Drill-down report rebuild each time when you expand/collapse group. This feature available in the FR preview only
-
Link to converter will be added soon. Check your ticket now
-
Try <var1> + #9 + <var2>
-
Send your request to support.com
-
https://forum.fast-report.com/en/discussion/comment/42094#Comment_42094 This is FR 6 VCL category. Create topic in the FR.Net category
-
Main FRDemo needs TeeChart and ADO. You may remove TeeChart and ADO references from FRDemo, but some reports will not work
-
Use TfrxBand.FindObject function Pass through TfrxBand.AllObjects list items
-
It seems some files from free FR Embarcadero edition still exists in the your system. Uninstall all instances of FR, remove all FR's files and folders (see system and hidden folders too) and then install FR Trial again
-
Go to printer driver settings and ckeck if 90 x 29 mm paper size exists Go to FR designer and set correct paper size on the computer which doesn't works
-
procedure frxReport1OnRunDialogs(var Result: Boolean); begin if <condition> then begin Result := False; Engine.StopReport; end; …
-
Assign parameter with report's variable in the parameter's editor. Pass variable to report frxReport1.Variables.Variables['YourNumVariableName'] := 123; frxReport1.Variables.Variables['YourStringVariableName'] := '''' + 'test' + '''';