Hello,
I want to assign the following time interval to Schedule field of Connections document: 12:00:00 AM - 11:00:00 PM
I will be using LotusScript for that. Below is my code. The problem is that it assigns as text and not as date/time interval
Any help is really appreciated
Dim s As New NotesSession
Dim db As NotesDatabase
Dim doc As NotesDocument
Set collection = db.UnprocessedDocuments
Set db = s.CurrentDatabase
Set doc = collection.GetFirstDocument()
doc.schedule= “12:00:00 AM - 11:00:00 PM”