Description: | Books the meeting |
Syntax: | object.Book |
Parameters: | |
object | Required, the Meeting object |
Remarks: | This method books the meeting. Prior to calling this function, you should set the subject of the meeting by setting the name property, you should add invited members by calling the AddRecipient method and you may optionally specify an agenda using the SetAgenda method. Other properties of the meeting should be set using the Value method. See the example for more details. |
Returns: | True if the meeting was successfully booked, False otherwise. |
Example: |
Dim meetings As Object
Set session = CreateObject("OfficeTalk.Session")
Set user = session.Logon(login name, password)
Set meeting = session.NewMeeting
bAdded = meeting.AddRecipient ("fred")
If (bAdded) Then
meeting.Name = "Test"
meeting.Value("Duration") = "2h"
meeting.Value("Start Time") = #12/3/98 13:00#
meeting.Value("Place") = "Board Room"
meeting.SetAgenda "1. Review minutes of previous meeting" & Chr(10) & Chr(13) & "2. Any other business"
meeting.Book
End If