Table of Content
HAL Forum
function val TimeToVal (
Time wtime)
Description:
Data conversion - from Time to Val
Parameters:
wtime Time for conversion
global
function Boolean TimeIsEarlier(time a,time b)
begin
  val ta,tb;
  Boolean res;
  
  res = true;
  ta = TimeToVal(a);
  tb = TimeToVal(b);
  if (ta>tb) then begin
    res = false;
  end;
  TimeIsEarlier = res;
  return;
end;
Related topics:
««