Table of Content
HAL Forum
procedure AddDateToArea (
Date d,Area a)
Description:
Adds Date to Area
Parameters:
d Date
a Variable of Area Type
procedure ExampleAddDateToArea()
begin
  Area a;

  AddDateToArea(CurrentDate,a);  
  return;
end;
Related topics:
««