EXPERT RESPONSE
You can LotusScript similar to the following:
Dim RightNow as new NotesDateTime("Now")
Dim StartTime as new NotesDateTime
("01/01/2001 08:00:00 AM")
StartTime.SetAnyDate=true;
Dim EndTime as new NotesDateTime
("01/01/2001 05:00:00 PM")
EndTime.SetAnyDate=true;
If RightNow>StartTime and
RifghtNow<EndTime then
' send mail
End if
For more information on using the LotusScript DateTime class, consult the Domino Designer help.
Do you have comments on this Ask the Expert Q&A? Let us know.
Related information from SearchDomino.com:
Tip: Verifying user's date setting and time zone on local PC
Tutorial: 30 LotusScript tips
Reference Center: LotusScript tips and advice
|