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
-
- Posts: 1
- Joined: Mon Jul 11, 2011 2:37 am
- Location: Belgie
date
Hello,
You can use the following method:
DateSerial(1970, 1, 1) is the zero point of the date in Flex, all operations will start from that date.
Thank you.
You can use the following method:
Code: Select all
{Today + DateSerial(1970, 1, 1 + 30)}
Thank you.