Search the Community
Showing results for tags 'fastreport'.
Found 4 results
-
I'm maintaining an aged legacy application written in Delphi. I'm experiencing something weird in a report made by Fastreport (ver 5.5.6) and Delphi (XE5). There is a situation in which the exe will be triggered with some input parameters to export the expected document to PDF or Image to be used on a website or somewhere. The specific report that I'm talking about has some fields that are formatted by Pascal script to 24-Hour format or AM/PM to meet each customer's needs. (Dynamic report). Everything is perfect in the report preview, the printed report, and export to PDF, image, or Excel in the visible mode of the application(normal usage of the application). but those formats don't apply in invisible mode, those fields come up with the default format of the server. I checked the SQL Server result and the application report preview in visible mode and everything is fine but on the same machine when it executes in invisible mode it doesn't work. I doubted those Pascal scripts (OnAfterData event has been used), so I put some log functions and I realized those Pascal scripts are running, I can verify they are running each time but don't affect the final exported file. Does anybody have the same experience, Any advice?
- 12 replies
-
- fastreport
- export
-
(and 1 more)
Tagged with:
-
Hi all, I will create an app to manage and print bank checks. I'm going to use FastReport since I'm used to it. I don't have a priori any problem except on the printing of the amount in words which is often shifted because there is the wording "Pay against this check" for example and continues on the line normally like the attached image. How should I manage the first line knowing that we must not leave too much space on the first line before going down to the second line. Counting on your ideas. Thanks all
-
how can I use FastReport in Delphi community edition?
GreatDayDan posted a topic in Tips / Blogs / Tutorials / Videos
I have been using Delphi Community Edition for several years. I now have CE 10.4 installed. GetIt does not show FastReport. How/Where can I get FR for CE? -
FastReport: Graphic item in a field of each "Databand" line
Epo posted a topic in Delphi Third-Party
Hi, How can I do to bind -e.g. the color of- a shape (set on each line of a DataBand) with a field of the current line of dataset. I have tried to use the event "OnBeforePrint" (of the DataBand and of the object itself) but it does not work. Maybe it is the field access that is not correct. Thank for help, Eddy procedure DataBandOnBeforePrint(Sender: TfrxComponent); begin if <Sample.CFRStatus> = '0' then shCFR.Visible := False else begin shCFR.Visible := True; if <Sample.CFRStatus> = '2' then shCFR.Color := clRed else if <Sample.CFRStatus> = '1' then shCFR.Color := clGreen; end; end; procedure shCFROnBeforePrint(Sender: TfrxComponent); begin if <Sample.CFRStatus> = '0' then shCFR.Visible := False else begin shCFR.Visible := True; if <Sample.CFRStatus> = '2' then shCFR.Color := clRed else if <Sample.CFRStatus> = '1' then shCFR.Color := clGreen; end; end;