Click or drag to resize

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
Syntax
bool HasConflict()

Return Value

Type: Boolean
Boolean - Returns true if one of the members has a conflicting meeting
Examples

HasConflict

C#
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