How to add recipient to open appointment?

  • Thread starter Thread starter callmedoug
  • Start date Start date
C

callmedoug

How do I add a recipient from my address book as a resource to my
current open appointment.

I can find tons on how to open a new appointment, but since the form I
am using to pick my resource is activated from a open appointment, I
need to add the resource to the current appointment.

Thanks
 
nevermind, I figured it out through the old trial and error method....


Set Meeting = Outlook.ActiveInspector.CurrentItem
Set myRecipient = Meeting.Recipients.Add(UseThisRoom)
myRecipient.Type = 3
 
Back
Top