Appointment Item

  • Thread starter Thread starter Joel Allen
  • Start date Start date
J

Joel Allen

Hello,

Within an appointment, there is a Label pull down - it has Important,
Business, Personal, etc...... I can't find it in the list of objects. What
is it called?

Thanks,
Joel
 
It is not exposed through the Outlook object model. You need to use Extended
MAPI (C++/Delphi), CDO 1.21 or Redemption to access it.

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
 
Thanks. What I'm doing is copying an appointment from one folder to another
and I'm copying each field in the code.

Maybe there is a way just to copy the whole appointment instead so that it
copies over the Label also?

Thanks for your help.

Thanks,
Joel
 
Sure, try Copy/Move:

set NewAppt = OldAppt.Copy
set NewAppt = set NewAppt.Move(SomeOtherFolder)

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