LOTUSSCRIPT/COM/OLE CLASSES
Examples: GetScheduleData method
1. This form action refreshes the embedded scheduler for all participants.
%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")
Call uis.GetScheduleData
End Sub
2. This form action refreshes the embedded scheduler for all participants not previously refreshed.
%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")
Call uis.GetScheduleData(2)
End Sub
See Also
GetScheduleData method
Glossary
Feedback on
Help
or
Product Usability
?
Help on Help
All Help Contents
Glossary