PDA

View Full Version : Outlook VBA find contact Fullname issue



bruintje
01-06-2005, 10:52 AM
Dear All,

I'm using some code to find a contact within the contact folder like

'// Get contactname
strFind = "[Full Name] = """ & props(1) & """"

'// Get and update correct contact
If Not objContacts.Find(strFind) Is Nothing Then

This is all fine and dandy when i work with Outlook English version it crashes on a Spanish version.

What do i need and which other things do i need to consider in building my solution???

I tried it with [Nombre Completo] but i'm not sure if that will work since i
can't test it directly

This is outlook 2003 but that would not matter in this case. It is for a COM Addin anyone who would be able to test in debug mode in a Spanish version of outlook 2003 would be welcome too, i can provide the source.

TIA
Brian

mark007
02-08-2005, 03:23 AM
Try changing your windows settings to spanish and see if that lets you test.

I would expet that you need a translation of Full Name but what it is excatly I don't know.

:)