Of course, if the system is dd/mm/yyyy the function would be:
on newDate (d,m,y)
::)
My point was to avoid the issue with Sept. 29 and February. Alternatively one could:
on newDate(m, d, y) set new_date to date "01/01/01" set month of new_date to m set day of new_date to d set year of new_date to y return new_date end newDate
newDate(12, 25, 1973)
On Sep 6, 2009, at 1:34 PM, Yvan KOENIG wrote: |