gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 563
- Last Active
- Roles
- Members, FR Team
Comments
-
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;
-
wrote: Any hints on how to recompile FR 4 with the latest TChart Pro 2014? The recompile utility fails with a message saying that it cannot find the Lib directoy Uninstall Win8, Vista or Windows Me Install Win7 or XP Use administrator accou…
-
Do you really use FireDAC? May be you use AnyDAC? Attach screenshot of error message here
-
frxReport1.LoadFromFile('C:/test.fr3'); TfrxGroupHeader(frxReport1.FindObject('GroupHeader1')).Condition := 'Copy(, 1, 1)'; frxReport1.ShowReport;
-
Works OK with FR5.0.11. Try to reinstall FR - remove all FR's files and folders and then install FR again
-
Use uses frxPrinter; TfrxReportPage(frxReport1.FindObject('Page1')).PaperSize := frxPrinters.Printer.PaperNameToNumber('A5');
-
frxReport1.PrintOptions.ShowDialog := False works OK for me
-
var d: TDateTime; begin     d := trunc(now);     while d < trunc(now) + 3 do       begin         ShowMessage(DateToStr(d));         d := d + 1;                                  …