Page 1 of 1

date

Posted: Fri Aug 26, 2011 8:21 am
by alaindhaene
Hi,

How can I add a few days to the current date, I tried with {Today + 30} , but that's probably not correct

Alain

date

Posted: Mon Aug 29, 2011 1:42 am
by Vladimir
Hello,

You can use the following method:

Code: Select all

{Today + DateSerial(1970, 1, 1 + 30)}
DateSerial(1970, 1, 1) is the zero point of the date in Flex, all operations will start from that date.


Thank you.