How to automate contact selection

  • Thread starter Thread starter jpottsx1
  • Start date Start date
J

jpottsx1

I am new to Outlook programming,and I am finding it hard to locate a
good answer on how do I programmatically select entries from the
address book and move them into the "Resources" box in the "Select
Attendees and Resources" dialog box.

I use the same resources each time a book a meeting, and would like a
way of pre-populating those resources into the "Resources" field.

Jeff
 
Whenever an appointment is created and displayed (e.g in the
Application.Inspectors.NewInspector event), call

set Recip = Appointment.Recipients.Add("name of the resource")
Recip.Type = olBCC

for each resource.

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
 
Back
Top