Table of Content
HAL Forum
function val GetAccumulator (
integer AccumulatorId)
Description:
Increases the value of accumulator by the specified value. Used for printing data in report's page footer. There are 9 accumulators available.
Parameters:
AccumulatorId The number of the accumulator from where to retrieve the data. There are 9 accumulators available.
global
procedure OnApplicationStartup() 
begin

  AddToAccumulator(4,50);
  AddToAccumulator(4,200); 
  stopalert(GetAccumulator(4));
  
  return;
end;
Related topics:
««