IncDate

Adds a specific number of days, months and years to a date. If a negative number is defined, the number is subtracted from the date.

SYNTAX
IncDate(date, days, months, years) 
ARGUMENTS

date Date serial number
days Number of days
months Number of months
years Number of years

RETURN Date serial number
EXAMPLE
GetObject("date","MLDate")

CurrDateAsInt = date.CurrentDate()

IncDateInt = date.IncDate(CurrDateAsInt, 10, 0, 0)