Click or drag to resize

IRecurrenceAddDate Method

Add any date to the recurring event.

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

Parameters

newVal
Type: SystemDateTime
Date - The date you want to add to the rucurrence
Examples

AddDate

VB
Dim db As New Database
If db.Login("<username>", "<password>") Then
    Dim appnt As SOAppointment
    appnt = db.GetAppointment(414)
    appnt.Recurrence.AddDate(New Date(2005, 11, 7))
    appnt.Save()
Else
    MsgBox("failed to log in")
End If

See Also