Hi,
I'm trying to use the example (MSOutlookMkAppointment) to send an email with an appointment to be added to the recipient calendar.
I was trying to convert this piece of code:
Set myRequiredAttendee = myItem.Recipients.Add ("Nate Sun")
myRequiredAttendee.Type = olRequiredI've already tried this but it's not working:
MODIFY olAppt
MeetingStatus = olMeeting
@Start = TmpString
Duration = 60
Subject = "Meeting to discuss Darth Vader"
Body = AddressString
Location "Battlestar Galactica"
ReminderMinutesBeforeStart = 1
ReminderSet = 1.
modify olAppt, @Recipients::@Add("test@test.com")
returning myReqAttendee.
modify myReqAttendee
@Type = olRequired.
MODIFY olAppt Save().
Error message:
System exception
Member not found
Cobol error at 00022D
on:
modify olAppt, @Recipients::@Add("test@test.com")
returning myReqAttendee.
Thank in advance for your help.
Romilda