-
Topic
-
Hi,
is there a way to create recurring appointments (autodate). The time for the appointment should be the whole day. Not with start and endtime! And at least it shoud be shown as tentative.
My code at the moment . . .
Set objAppt = GroupWise.Account.Calendar.Messages.Add("GW.MESSAGE.APPOINTMENT", fgwPersonal)
With objAppt
.OnCalendar = TRUE
.Priority = fgwNormal
.FromText = ""
.Place = ""
.StartDate = Date
.EndDate = Date + 1
.Duration = 24/24
.Subject = "Birthday"
.Private = TRUE
.AlarmSet = TRUE
.AlarmReminderMinutes = 900
.BodyText.PlainText = "Happy birthday to you! Don't forget my present"
End With
Set objRecipient = Nothing
Set objAppt = Nothing
Thanks
Ralf
Viewing 3 replies - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.