The property names are the same, regardless of the language, and may differ from the field names you see in the FIeld Chooser. You can find the property names in the object browser in VBA.

Signature
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx
>I want to import into 'Outlook Contacts' records from Access. I found sample
> code in http://support.microsoft.com/?kbid=170320
[quoted text clipped - 7 lines]
> Thanks for help
> Hugo
I've found the property names in VBA. Thanks. But there is still a problem.
I use a dutch version of Outlook 2002. I think there are errors in the
translation from the Enghish version to the dutch version.
Not so easy to explain in another language. I give an example. I use the
general form of a contact, tab 'General', home address, postalcode and I
fill in: 1234 (this is an example). If I use the tab 'All fields', I find
1234 in the field 'homeaddress, city' and not 'homeaddress, postalcode'.
For that reason, I had to program as follows:
If ![rel_gemeente] <> "" Then c.HomeAddressState = ![rel_gemeente]
If ![rel_postcode] <> "" Then c.HomeAddressCity = ![rel_postcode]
where rel_gemeente is the name of the city
and rel_postcode is the postalcode
Anyway, thanks for help.
Hugo
The property names are the same, regardless of the language, and may differ
from the field names you see in the FIeld Chooser. You can find the property
names in the object browser in VBA.

Signature
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx
>I want to import into 'Outlook Contacts' records from Access. I found
>sample
[quoted text clipped - 10 lines]
> Thanks for help
> Hugo
Sue Mosher [MVP-Outlook] - 23 Dec 2005 13:51 GMT
That's a different issue. How Outlook resolves typed mailing addresses into individual properties is likely to differ from version to version. The property names themselves are invariable. What's happened in your scenario is that "1234" was resolved to HomeAddressCity.

Signature
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx
> I've found the property names in VBA. Thanks. But there is still a problem.
> I use a dutch version of Outlook 2002. I think there are errors in the
[quoted text clipped - 35 lines]
>> Thanks for help
>> Hugo