Click or drag to resize

IAppointmentAcceptInvitation Method

Accept or reject this invitation: 0 = Reject, 1 = Accept.

Namespace:  SuperOffice.COM.SuperOfficeDB
Assembly:  SuperOfficeDB.Interop (in SuperOfficeDB.Interop.dll) Version: 8.0.0.0
Syntax
void AcceptInvitation(
	EnResponse newVal
)

Parameters

newVal
Type: SuperOffice.COM.SuperOfficeDBEnResponse
Examples

AcceptInvitation

VB
Dim db As New Database
If db.Login("<username>", "<password>") Then
    Dim app As SOAppointment = db.GetAppointment(3)
    'accept the the current appointment
    app.AcceptInvitation(EnResponse.enResponseAccept)
Else
    MsgBox("could not log on")
End If

See Also