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
Syntaxvoid AddDate(
DateTime newVal
)
Sub AddDate (
newVal As DateTime
)
Dim instance As IRecurrence
Dim newVal As DateTime
instance.AddDate(newVal)
void AddDate(
[InAttribute] DateTime newVal
)
Parameters
- newVal
- Type: SystemDateTime
Date - The date you want to add to the rucurrence
ExamplesAddDate
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