
-=Den=-
-=Den=-
About
- Username
- -=Den=-
- Joined
- Visits
- 7
- Last Active
- Roles
- FR Team
Comments
-
Try this code: procedure Page1OnManualBuild(Sender: TfrxComponent); var i:integer; DataSet: TfrxDataSet; begin DataSet := MasterData1.DataSet; for i:=1 to 3 do {count of 1-st pages} begin DataSet.First; while not DataSet.Eof do begin Engine.ShowBand…
-
Maybe! I use the MailExport and it work fine.
-
Hi! You have 4 pages in the preview or in the designer?
-
Try this code: if frxReport1.PrepareReport() then frxReport1.Export(frxMailExport1); Don't call frxReport1.ShowReport(). If you need Show Report call ShowPreparedReport;
-
How you try to expotr (code)?
-
Zoom of the barcode change only line width. For height you need change the height property.
-
Resolution 120 ?
-
You use FR 3.18 ?
-
Try that code: if rpCobrOperat.PrepareReport() then rpCobrOperat.Export(archExcelXML);
-
>>but why? In the help about OnAfterData event: "The name of the script routine that will be called after the object gets data." In the help about OnBeforePrint event: "The name of the script routine that will be called before the obje…
-
My function: function Convert(Str:String):String; var i:integer; begin for i:=0 to length(Str)-1 do case Str of 'a': Str:= 'A'; 'f': Str:= 'F'; end; Result := Str; end; procedure Memo2OnBeforePrint(Sender: TfrxComponent); begin Memo…
-
Yes, your need to change parent property Child. if you need hide set it in nil, if show Child = childband1. For sample: if = 4 then MasterData1.Child := nil else MasterData1.Child := Child1
-
Memo1.Memo.Text := Csere(Memo1.Memo.Text); - it is wrong call, you need try - Memo1.Text := Csere(Memo1.Text);
-
Make a trace steps: 1) To create two Child Band's. 2) On MasterData to place all Memo which go up to the first address switching him. 3) To place the second address on Child1, and all rest on Child2. 4) To establish properties MasterData. Child …