M
Michael Zino
Dear All,
I am trying to add a safe recipient to a safe appointment item using redemption, but no recipients are added to the appointment item.
I am using the following code (from VB.NET, but it doesn't work from VB6 either):
Dim oSafeAppointmentItem As Redemption.SafeAppointmentItem
Dim oSafeRecipient As Redemption.SafeRecipient
oAppointmentItem.MeetingStatus = OlMeetingStatus.olMeeting
oSafeAppointmentItem = CreateObject("Redemption.SafeAppointmentItem")
oSafeAppointmentItem.Item = oAppointmentItem
oSafeAppointmentItem.AuthKey = "My@Key"
oSafeRecipient = oSafeItem.Recipients.Add("My Recipient")
oSafeRecipient.Resolve(True)
By looking inside oSafeRecipient instance, it seems that the recipient was resolved successfully as the EntryID was set with a valid value.
However, no recipient was added to the appointment itself. The appointment UI has no recipients after executing this code.
There are additional properties such as RequiredAtendeed, Resources, and OptionalAtendeeds, but they are read only and therefore cannot be accessed.
Thanks,
Michael Zino
I am trying to add a safe recipient to a safe appointment item using redemption, but no recipients are added to the appointment item.
I am using the following code (from VB.NET, but it doesn't work from VB6 either):
Dim oSafeAppointmentItem As Redemption.SafeAppointmentItem
Dim oSafeRecipient As Redemption.SafeRecipient
oAppointmentItem.MeetingStatus = OlMeetingStatus.olMeeting
oSafeAppointmentItem = CreateObject("Redemption.SafeAppointmentItem")
oSafeAppointmentItem.Item = oAppointmentItem
oSafeAppointmentItem.AuthKey = "My@Key"
oSafeRecipient = oSafeItem.Recipients.Add("My Recipient")
oSafeRecipient.Resolve(True)
By looking inside oSafeRecipient instance, it seems that the recipient was resolved successfully as the EntryID was set with a valid value.
However, no recipient was added to the appointment itself. The appointment UI has no recipients after executing this code.
There are additional properties such as RequiredAtendeed, Resources, and OptionalAtendeeds, but they are read only and therefore cannot be accessed.
Thanks,
Michael Zino