gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 578
- Last Active
- Roles
- Members, FR Team
Comments
-
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;                                  …
-
I don't use D2007, but D7 works OK too I use latest FR 5.0.11
-
If you have a sources - you can modify frxClass.pas TfrxSysMemoView = class(TfrxCustomMemoView) public class function GetDescription: String; override; published property AutoWidth; property CharSpacing; property Color; //add this line
-
frxDB18 is not FR for FireDAC package Did you copy all files from Source\FireDAC folder to LibD18 folder before compiling&
-
FR5 works OK with XE4 - I can run FQB
-
Does TfrxDesigner.Standalone = False?
-
attach frx.inc from LibD11 folder
-
Did you get same error with FRDemo?
-
Place TfrxChartView on group footer and set masterdata band as chart series source
-
No, FR doesn't have such feature
-
It seems somethintg wring with FR installation. Try to reinstall FR again
-
You can decrease TfrxBarcode2DView.BarProperties.PixelHeight
-
wrote: It appears that Fast Reports cannot be installed into more than one IDE. If you have a sources -you can compile FR packages for any IDE by recompile.exe If you don't have a sources - install FR fpr one IDE, store FR's LibDx folder, un…
-
Set permissions for full access for all users for S:\Program Files (x86)\FastReports\FastReport 5\LibD15 folder
-
replace [,] with <,> in the expression
-
Try to prepare report on the second TfrxReport and then call frxReport1.PreviewPages.AddFrom(frxReport2) or assign TfrxReport.Dataset with your master dataset
-
You can't get TFrxMemoView(sender).value in TfrxReport.OnBeforePrint event, try to use frxReport1.Calc(TFrxMemoView(sender).Text)
-
Try to use frxreport1.Variables.variables or frxReport1.Calc('')
-
It seems a bug in TeeChart or you use fixed colors for series
-
It seems a bug in the TeeChart
-
It seems a TeeChart problem, not FR
-
Add TfrxGradientObject and TfrxCrossObject to your project
-
procedure Memo1OnBeforePrint(Sender: TfrxComponent); begin   if > 1000 then Memo1.Color := clRed;                                                                         …
-
You may use report or script variables: frxReport1.Variables.Variables := 1; frxReport1.Variables.Variables := '''' + 'test' + ''''; frxReport1.Script.Variables := 'test';