gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 563
- Last Active
- Roles
- Members, FR Team
Comments
-
As I know, FireDAC available in the XE4 and higher For XE3 AnyDAC which have DB Engine for FR is available
-
    Var     NewCopies : integer; procedure frxReportOnReportPrint(Sender: TfrxComponent); begin   NewCopies := Report.PrintOptions.Copies;   Set('NumPrinted', + NewCopies); end; begin     Report.EngineOptions.DestroyForms := Fals…
-
Set TfrxFDComponents.DesignTimeExpr to False
-
Rich edit is platform-dependent component, so it doesn't available for Lazarus
-
Do you have installed Delphi's compiler dcc32?
-
Try TfrxMemoView(frxReport1.FindObject('Memo1')).Text := 'test';
-
wrote: I don't want to be rude, but did you have a look to the attached file ? No, as you can see wrote: Attached File frxAddDB.pas ( 2.42k ) Number of downloads: 0 Attached File frxAddDBRTTI.pas ( 1.69k ) Number of downloads: 0 S…
-
Don't try to read manual, try to understand it procedure GroupHeader1OnBeforePrint(Sender: TfrxComponent); begin if Engine.FinalPass then Memo8.Text := 'Sum: ' + Get('Sum1' + ); Memo9.Text := 'Sum: ' + Get('Sum2' + ); end; procedure GroupFooter1OnB…
-
Try to set numbers of copies to 1 in the TfrxReport.OnPrintReport event
-
See a Developer's manual "Writing Custom Report Components" chapter wrote: To create a component which displays data from a DB move the DataSet and DataField properties into the ???published??? section and then override the ???GetData??? method.…
-
Can you show your DB field in the TOLEContainer?
-
No, FR4 will not support XE7
-
What version of IDE do you use?
-
wrote: Can be installed at the same time two versions FasteReport Professional: FR4 for Delphi 4 and FR5 for Delphi XE7? Yes, you can wrote: Is Delphi XE7 can work with FastReport 4? No wrote: The latest stable version of FastRep…
-
Modify frxExportPDF.pas       { Write XObject with a picture inside }       Jpg := TJPEGImage.Create;       try         if (Obj.ClassName = 'TfrxBarCodeView') or           (Obj is TfrxCustomLineView) or    …
-
Try to use FR5 with Code128Auto encoding
-
Try to hide componets on all TfrxReport.PreviewPages in the export's OnBeginExport event Show components again in the TfrxReport.OnStopProgress event
-
Do you have a FR sources?
-
Set TfrxPDFExport.PageNumbers := '1,2,3'
-
Try to use TfrxReport.OnProgress event
-
Try to use latest 5.2.3
-
Try to use latest 4.15.13
-
Set Child2.Stretched to True
-
Attach your report template (fr3). Your screenshot is useless
-
Download AnyDAC addons from AnyDAC's download page
-
Use second way. You can set visibility of report's page in the script
-
wrote: I have a canned report that a client wants an extra page added to. I still need to provide the original format to existing clients. Describe what you have and what you want to get more detally
-
Set Subreport.PrintOnParent = true
-
FR Embarcadero edition doesn't support's internal datasets For FR Trial you can found packages for FireDAC in the LibD20 folder
-
Try to add TfrxMemoView with frame to Child band, set TfrxMemoView.StretchMode to smMaxHeight, TfrxMemoView.Width = Child.Width