.

HCLSoftware Business Partner
Domino Consulting Services
CRUCIAL Notes Tools
+1 212-599-2048

Domino Consulting Services
CRUCIAL Notes Tools
Domino administration
Notes development

Facebook Twitter YouTube
Chat now       
.
ProductsDownloadsNewsAbout usContact


Need a Domino Consultant? Call NotesMail +1 212-599-2048 - HCLSoftware Business Partner

LOTUSSCRIPT/COM/OLE CLASSES


Examples: GetSchedulerObject method
This form action displays the required and optional people on an embedded scheduled.

%INCLUDE "lsconst.lss"

Sub Click(Source As Button)
 Dim ws As NotesUIWorkspace
 Dim uid As NotesUIDocument
 Dim uis As NotesUIScheduler
 Set ws = New NotesUIWorkspace
 Set uid = ws.CurrentDocument
 Set uis = uid.GetSchedulerObject("Main")
 attendees = uis.GetAttendees( _
 REQUIRED_PEOPLE + OPTIONAL_PEOPLE)
 displayList = ""
 Forall attendee In attendees
   If displayList = "" Then
     displayList = attendee
   Else
     displayList = displayList & Chr(13) & attendee
   End If
 End Forall
 If displayList <> "" Then
   Messagebox displayList,, "List of attendees"
 End If
End Sub

See Also