05-02-2011, 12:26 PM
Please try to find out the object properties of the calender and then use 'DateAdd' function to add dates.
Ex:-
Here Interval represents: "d" or "m" or "Y"
Number represents: how many days or months or years you want to enter
Date represents the date which you have.
Ex:-
Code:
Object = browser("Properties").Page("Properties").Image("Calender Properties")
variable = object.Dateadd("Interval",Number, Date)
msgbox variable
Here Interval represents: "d" or "m" or "Y"
Number represents: how many days or months or years you want to enter
Date represents the date which you have.