IAppointmentHasConflict Method |
Has this appointment(booking) a time conflict? 0 = enResponseReject, 1 = enResponseAccept
Namespace:
SuperOffice.COM.SuperOfficeDB
Assembly:
SuperOfficeDB.Interop (in SuperOfficeDB.Interop.dll) Version: 8.0.0.0
SyntaxFunction HasConflict As Boolean
Dim instance As IAppointment
Dim returnValue As Boolean
returnValue = instance.HasConflict()
Return Value
Type:
BooleanBoolean - Returns true if one of the members has a conflicting meeting
ExamplesHasConflict
dim db
dim appnt
Set db = CreateObject("SuperOfficedb.Database")
if db.login("<username>","<password>") then
set appnt = db.GetAppointment(450)
if appnt.HasConflict then
msgbox "Appointment has a conflict"
else
msgbox "Appointment does not have a conflict"
end if
else
MsgBox "Could not log on"
end if
Set objSO = Nothing
See Also