Table of Content
HAL Forum
procedure AddToAccumulator (
Integer acumnr,val v)
Description:
Increases the value of accumulator by the specified value. Used for printing data in report's page footer.
Parameters:
acumnr Accumulator Number. There are 9 accumulators available.
v Value to add
global
procedure OnApplicationStartup() 
begin

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