views:

71

answers:

0

does anyone know a way to access the localized names of an outlook contact items property collection? If i loop through the properties collection

for (int i = 0; i < item.ItemProperties.Count; i++) {
 if (item.ItemProperties[i].Type == Microsoft.Office.Interop.Outlook.OlUserPropertyType.olText) {
  string s = item.ItemProperties[i].Name
 }
}

s becomes Nickname and so on... I need these Name-Properties in the language outlook uses - i.e. a french version should return the french names and a german the german ones. Is that possible?