Optional Attendees

  • Thread starter Thread starter Andy
  • Start date Start date
A

Andy

I'm generating a meeting request in Outlook 2000 from A97 using automation.

I can add attendess to the reuired list, set start, stop, reminders,
attachments and message body.

How do I add attendess to the optional list?

Andy
 
This would really be an Outlook question, not an Access one.

Find the object that you refer to as the "optional list", in Outlook VBA
help. Then check the Methods of that Object. One of the methods will
presumably let you add things to that list./ I don't know Outlook VBA at
all, but I imagine that a method to add attendees to the optional list,
would be very similar to the method to add them to the required list, no?

HTH,
TC
 
Hi ther

Instead of usig the .Recipient.Add syntax you'll have to use .OptionalAttendees = yourtextbox to do it

Regards
 
Back
Top