Ken,
If I do Item.Save after adding item into Item.Recipient then It is not
displaying free/busy status for any conf rooms irrespective of whether I
touched the Scheduling tab or not. :-(
Please refer my code.
Sub CommandButton2_Click
Dim confRoomName
If Not IsNull(Item.GetInspector.ModifiedFormPages("Find Conference
Room").Controls("ListBox1").Value) Then
If Not InStr(Item.GetInspector.ModifiedFormPages("Find Conference
Room").Controls("ListBox1").Value, "(Free)") = 0 Then
confRoomName = Split(Item.GetInspector.ModifiedFormPages("Find Conference
Room").Controls("ListBox1").Value, "(Free)", -1, 1)
Else
confRoomName = Split(Item.GetInspector.ModifiedFormPages("Find Conference
Room").Controls("ListBox1").Value, "(Busy)", -1, 1)
End If
Item.Recipients.Add(confRoomName(0))
Item.Save
Else
MsgBox "Please select any conference room"
End If
End Sub
Thanks,
Paresh