gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 578
- Last Active
- Roles
- Members, FR Team
Comments
-
Use report or script variables to send string data to the report, TfrxUserDataset - for arrays
-
Drill-down need refresh whole report, there are no such option
-
If NUMBER is a script variable - use if ((NUMBER mod 2) = 0) then Showmessage('EVEN') too
-
Try to use latest FR 5.1.5
-
This is wrong forum. Place your question in the FR.Net forum
-
Set TfrxReport.PrintOptions.Printer
-
Use report with TfrxReportPage and then assign TfrxReport.Dataset with your dataset
-
What TfrxReport.EngineOptions.ConvertNulls value?
-
There are no replacement fot TfrxRichView in the FR FMX
-
This is not a bug. Use IBX instead of DBX
-
Attach your report template (fr3) and saved preview pages (fp3) here
-
Try picChart->Picture->LoadFromClipboardFormat
-
As I know this is standart internal queries behavior since FR3
-
wrote: I know the problem of TfrxDBXTable and TfrxDBXQuery of unidirectional dataset. What can I do else? Use TfrxIBXTable and TfrxIBXQuery
-
Do you want to find some text in the prepared report by code?
-
See an User's manual: wrote: Export feature : RichText objects are exported as graphics.
-
You may add additional button to the preview toolbar and do what you want when press this button
-
FR Export filters doesn't have such feature, but you can run export several times
-
You may set restrictions for objects
-
Attach report template here
-
Attach your report template here
-
Store record's ID in the TagStr property See a sample in the C:\Program Files (x86)\FastReports\FastReport 4\Demos\InteractiveReport folder
-
Modify frxDesgn.pas: function TfrxDesignerForm.GetDefaultObjectSize: TfrxPoint; begin   case FUnits of     duCM:    Result := frxPoint(fr1cm * 2.5, fr1cm * 0.5);     duInches: Result := frxPoint(fr1in, fr1in * 0.2);     duPixels…
-
wrote: Is there any option in fast report to prevent exception prompt and continue render the report when field doesn't exist? There are no such option. You can hide error messages but preparing of report will be stopped
-
wrote: The parameter "not Report.EngineOptions.DestroyForms" is not correct in these two described cases. This is correct behavior Set TfrxReport.EngineOptions.DestroyForms to False
-
procedure ReportSummary1OnAfterCalcHeight(Sender: TfrxComponent); begin     if Engine.FreeSpace < ReportSummary1.Height then Engine.NewPage;     Engine.CurY := Engine.CurY + Engine.FreeSpace - ReportSummary1.Height - 0.000001; end;
-
SK2014 wrote: » Hi apex, I suggest you open a "ticket" with Fast Reports, so they can provide some answers. Just have a few questions: Are you also using a Firebird database? Do you have another version of Delphi installed on your PC besid…
-
frxReport1.PrepareReport; frxReport1.Print; frxReport1.ShowPreparedReport;