Date support for old dates & function 'cross call'
Posted: Wed Jul 16, 2003 2:53 pm
Hi,
I think two things would be nice to have:
--------------- Date support -------------------
date = ParseDate("%yyyy", "1983")
Debug date
date = ParseDate("%yyyy", "1933")
Debug date
--
The date library doesn't support years before the 1970's (I suppose), which is a real pain.
--------------- Date support -------------------
Procedure a()
b()
EndProcedure
Procedure b()
a()
EndProcedure
--
Well not exatcly that, because it would cause an infinite loop, but something like C's prototypes, that would allow to call a procedure that hasn't been defined yet.
Tony
I think two things would be nice to have:
--------------- Date support -------------------
date = ParseDate("%yyyy", "1983")
Debug date
date = ParseDate("%yyyy", "1933")
Debug date
--
The date library doesn't support years before the 1970's (I suppose), which is a real pain.
--------------- Date support -------------------
Procedure a()
b()
EndProcedure
Procedure b()
a()
EndProcedure
--
Well not exatcly that, because it would cause an infinite loop, but something like C's prototypes, that would allow to call a procedure that hasn't been defined yet.
Tony