Default Avatar

EPML

EPML

About

Username
EPML
Location
UK
Joined
Visits
0
Last Active
Roles
Members

Comments

  • EPML wrote: » EPML wrote: » In the report script, in the OnBeforePrint of your MasterData band, check for the field value and call Engine.NewPage; something like var PreviousMonth : Integer; MasterData1.OnbeforePrint; begin if () &l…
  • gordk wrote: » i can't see what you are trying to acomplish here. var lMonthSubTotal: String; function MonthSubTotal: String; begin Result := lMonthSubTotal; end; procedure Memo14OnBeforePrint(Sender: TfrxComponent); begin lMonthSubTo…
  • gordk wrote: » " An idiosyncrasy of an aggregate function is that it should be used inside the ???Text??? object; one can call it in the script after it is used. If an aggregate function is used in the script only, (without using it in the ???…
  • gordk wrote: » SUM(,MasterData1); is returning null. again read the user manual chapter on script and on aggregates. BTW the function doesn't make any sense since you can set the display format of the memo. Thanks for the reply gordk. …
  • Anu de Deus wrote: » In the report script, in the OnBeforePrint of your MasterData band, check for the field value and call Engine.NewPage; something like var PreviousMonth : Integer; MasterData1.OnbeforePrint; begin if () <> Prev…
  • gordk wrote: » if your variable is a categorized variable in the variable list you must use set methods in code. Set('Balance',( + 10)); if it is a typed variable declared at the top of the code page it is global and available to all procedure…
  • gordk wrote: » [IIF( ='',,)] assuming balance is a typed var declared at the start of the codepage := + ; becomes Balance := Balance + ; this one is a bit differrent [] should be outer, fieldvalues <> Page_Balance := Page_Balan…