
-=Den=-
-=Den=-
About
- Username
- -=Den=-
- Joined
- Visits
- 7
- Last Active
- Roles
- FR Team
Comments
-
Where you to send example?
-
In TfrxListBoxControl no even property multiselect. Create all in script, without participation component TfrxComponent (exactly for this is created FS ).
-
FR 3.19. Here is Script example (simply get up script in report). var listBox1,listBox2:TlistBox; form:Tform; button:Tbutton; procedure BTNCLK(Sender:TButton); var i:integer; begin for i:=0 to listbox1.items.Count -1 do begin if Listbox1.Selected[i…
-
I little has not understood. You it is necessary chosen field from one ListBox to move in another? Or will simply take the indexes chosen element?
-
I little has not understood. You it is necessary chosen field from one ListBox to move in another? Or will simply take the indexes chosen element?
-
Search for error in script code.
-
You unnecessary to do this independent FR does this itself.
-
In the TfxReport.OnReportPrint Event: if frxReport1.Engine.FinalPass then begin //your code end;
-
You it is necessary to do report Doublepass: frxReport.Engine.DoublePass:=True;
-
wrote:  if Engine.FreeSpace < ReportSummary1.Height then        Engine.NewPage;    Engine.CurY := Engine.CurY + Engine.FreeSpace - ReportSummary1.Height - 1; The Problem in this code . FR counts the free plac…
-
Change size of the page or use ChildBand.
-
"Page Options"->"Other Options"->"Large hreight in desing mode" must be set.
-
I tried with three languages and all work fine.
-
Try so: In catalogue Res\English start mk.bat. To do the multi-language resource, it is necessary to start mkall.bat - is got file English.frc, which it is necessary to load so: uses frxRes; frxResources.LoadFromFile('English.frc');
-
Where you declare the variables?
-
To header was not reprinted try such variant: procedure Header2OnBeforePrint(Sender: TfrxComponent); begin if Engine.FreeSpace < (Header2.Height + MasterData2.Height) then begin  Engine.NewPage;  Header2.Visible := false; end else He…
-
You need to install Dataset property on band(double click on band and choose dataset). Read documentation there all are described. User Manual
-
That exactly does not work?
-
frxReport1.LoadFromFile('header.fr3'); frxReport1.PrepareReport(false); frxReport1.LoadFromFile('report1.fr3'); frxReport1.PrepareReport(false); frxReport1.LoadFromFile('header.fr3'); frxReport1.PrepareReport(false); frxReport1.LoadFromFile('report2…
-
You can joined prepared reports.
-
wrote: 1- What wrong with this code it seems to has no effect?! In MasterData1OnBeforePrint(Sender: TfrxComponent) event - sender can be only MasterData1. In SAFOnBeforePrint(Sender: TfrxComponent) event - sender can be only SAF. wrote: …
-
This is code composite two reports: frxReport1.PrepareReport(); frxReport2.PrepareReport(); frxReport1.PreviewPages.AddFrom(frxReport2); frxReport1.ShowPreparedReport; This code load and composite 3 reports: frxReport1.LoadFromFile('report1.fr3…
-
Please give me example(Report),maybe i see what's wrong.
-
In FR 2.54 FILDISNULL - work fine. Try something like this: if FIELDISNULL('dmOrder.ibdsPO."INSTRUCTIONS"') then MasterData1.Visible:=False//if field not null hide band else MasterData1.Visible:=True;//if field not null show band You need …
-
Try to change function in the FR_Class.pas. Function: procedure TDatabaseFunctionLibrary.DoFunction(FNo: Integer; p1, p2, p3: Variant; var val: Variant); begin val := 0; case FNo of 0: val := frFieldIsNull(p1);{change to 0: val := frFiel…
-
wrote: 1. The FieldIsNull function returns true even when testing a field that contains a value. You need try to call the FieldIsNull function like this: FieldIsNull(' Table1."CustNo" ') The call FieldIsNull([Table1."CustNo"]) - it is wrong.
-
Yes! More info here.
-
You need the source code and the many time.
-
Give me the source code, and I try to help you.
-
The frxMailExport component added in the version 3.16 and beter, see changes here.