
Peta
Peta
About
- Username
- Peta
- Joined
- Visits
- 2
- Last Active
- Roles
- Members
Comments
-
Hi, I have something similar but is personalized for my application and I need to work a little to extract. If you have sources look a little to TfrxPictureView and TfrxPictureView.GetData. Copy all TfrxPictureView object and modify it to your …
-
query spain wrote: » In I make concrete, the images (they are jpgs small), they are not seen, and neither the boldfaces or cursive they are seen. Hi, be happy, this is not the worst thing... in my exports I see only white pages. More th…
-
Zhou X.B. wrote: » ... I also need a feature that could let user see preview windows when all clientdatasets are freed (coz I used adhoc clientdatasets) Hi, Preview in FR is somehow live-preview. You need active datasets. Because this …
-
collectivefriction wrote: » To highlight where this value changes I would like to place a summary page between each set of data. Hi, and GroupHeader-GroupFooter band is not what you need? Best Regards, Cristian Peta
-
collectivefriction wrote: » OK slightly different slant on my question. Once I have achieved the above, i.e. for each band a differnet picture is dynamically craeted, saved to disk and then loaded and displayed in the report. I then need to …
-
austingrd wrote: » austingrd wrote: » Hi, I think you need two instances of TfrxReport to do this. Best Regards, Cristian PeÅ£a Hi Peta, can you please expland? Like how do we create two instances? Hi, At design time si…
-
Hi, I think you need two instances of TfrxReport to do this. Best Regards, Cristian Peţa
-
Hallo, I wait for FR5 for 3 years now... after many promises (PDF/A also). And I do not believe that FR for FireMonkey do not have native PDF export... Something is strange... In my humble opinion frxExportPDF.pas is easy to translate to FMX, …
-
Hi, I managed to install in both XE2 and XE3 with FR 4.13.1 I installed in first IDE and use "Recompile wizard" for second. After this I must manually add packages from "Components"->"Install packages" for the second IDE. Now all is OK. …
-
I do not have TpsBarcodeException in my psReportFast unit. I do not remember exactly (it's about 2 years) what I did by for me it's working in Delphi XE, XE2. I remember only that I delete portions of psReportFast unit.
-
This is from Delphi.   function FindFrxComp(AReport: TfrxReport; AName: String): TfrxComponent;     procedure CheckComp(AComp: TfrxComponent);     var       i: Integer;     begin       if SameText(AComp.Name, AName) then …
-
Petter S. wrote: » And is there any way of executing another report from script code? What I want is to execute a second report through the OnClick-event, using the value of a clickable memo as a parameter for the next report. TfrxReport f…
-
gpi wrote: » 2.4 HTML-tags in the "Text" object ..... It is impossible to modify font size and name; otherwise the text-rendering unit in FastReport would become very complex. Yes, very compex, but an little HTML replacement for RichEd…
-
query spain wrote: » query spain wrote: » Try to change paper size in main procedure of script This is the result of the Attempt Page1.PaperSize := DMPAPER_A5; // NOT DECLARED IDENTIFIER DMPAPER_A5 ... DMPAPER_A5 is declared …
-
I have not referred to TfrxReport.OnGetValue from the report but from the source. TForm1.frxReport1GetValue is assigned to TfrxReport.OnGetValue from your source. I do not create the variable in the report and it works. But you can not use spaces…
-
I prefer to use TfrxReport.OnGetValue
-
gpi wrote: » Use TfrxMemoView(frxReport1.FindObject('frxtalla'+inttostr(i))).Visible := False; It looks better but if you want speed optimization it is better first code. Depends on what do you want to optimize.
-
    procedure Find(frxComp: TfrxComponent);     var       i: Integer;       loc_frxComp: TfrxComponent;     begin       for i := 0 to frxComp.Objects.Count - 1 do begin         loc_frxComp := frxComp.Objects[i];…
-
var      pw: TfrxComponent; begin   pw := frxReport1.FindObject('MyImage');   if (pw is TfrxPictureView) then begin     ....   end; end;
-
If anyone still does not know, from Delphi XE2 "Feature Matrix": New in XE2! FastReport VCL 4 RAD Edition reporting tool
-
..Source\frxPreview.pas is the best example or you can copy and modify it. I changed from Rave and I used my old custom form with an TfrxPreview conected to my frxReport1. It was the best solution for my old users. For Indy use TIdSSLIOHandlerSock…
-
From what I know Google, for example, do not work without encryption (like SSL). But with custom preview and Indy you can do it.
-
marty wrote: » Sound good - how would I do that? I found this http://www.fast-report.com/en/documentatio...he%20report.htm but don't quite understand... I prefer this way but with TfrxReport.OnUserFunction is a litle easy. Your big prob…
-
If there is not other option you can easy create a function in TFrxReport.OnUserFunction and call ShellExecute()
-
I do not know but if ISS run as a service.... An service can not show visual components in usual way without hanging and eventually asking the user if he want to see.
-
It works. Thank you.
-
The problem is that child band do not have Columns property. And I do not know how to do a complex label (2 or more label types) and print one or other type of label without Child bands. With child band is easy to change Visible property alternate…
-
If I work with Columns property of the Page it works. I have a child band and from script (MasterData1OnBeforePrint) I change Visible property alternately from MasterData to Child. But the problem is that labels go from up do down, not from left t…