Here’s my problem,
In my application i have a start date and an end date like this :
StartDate = 08/03/2004
End Date = 11/03/2004
I want to create a date list like this with lotuscript:
08/03/2004
09/03/2004
10/03/2004
11/03/2004
Do you know how i can do this ?
Thanks
Subject: Yes
Work with NotesDateTime items and adjust…
dim startdate as NotesdateTimeItem(“08/03/2004”)
dim end as NotesdateTimeItem(“11/03/2004”)
dim newDate as New NotesdateTime
newDate=startdate.AdjustMonth( 1 )
if newDate<> enddate then
’ stick it in an array
else
’ stick end date in the array
end if