[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Fwd: EL after 2000 dates.]



PureBytes Links

Trading Reference Links

or even easier...

{
Function:  mo_da_yyyr

returns a string in the form mm/dd/yyyy
}

var: yy(0);

yy = year(date) + 1900;

mo_da_yyyr =
  numtostr(month(date),0) + "/" +
  numtostr(dayofmonth(date),0) + "/" +
  numtostr(yy,0);

-- 
   Dennis