ItemProperties in Outlook Object Library 9.0

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello NG!

Using the Outlook OL 10 (Outlook 2002) I can access the properties of an
item with

myProperty = myOutlookItem.ItemProperties("PropertyName")

In the Outlook OL 9 (Outlook 2000) I can't find the member "ItemProperties".

Is there an other way to dynamically access the item-properties by it's
name?
I can't use ...

myProperty = myOutlookItem.PropertyName

....because I need a flexible solution.

Any suggestions?

Thanks, D.Barisch
 
ItemProperties was added in Outlook 2002. You can use UserProperties in
Outlook 2000 -- supply the second argument -- but definitely don't use it in
Outlook form code with built-in properties.
 
Back
Top