Consulting

Results 1 to 2 of 2

Thread: Outlook VBA find contact Fullname issue

  1. #1
    VBAX Newbie
    Joined
    Dec 2004
    Posts
    1
    Location

    Question Outlook VBA find contact Fullname issue

    Dear All,

    I'm using some code to find a contact within the contact folder like
    [VBA]
    '// Get contactname
    strFind = "[Full Name] = """ & props(1) & """"

    '// Get and update correct contact
    If Not objContacts.Find(strFind) Is Nothing Then
    [/VBA]
    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

  2. #2
    BoardCoder
    Licensed Coder
    VBAX Expert mark007's Avatar
    Joined
    May 2004
    Location
    Leeds, UK
    Posts
    622
    Location
    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.

    "Computers are useless. They can only give you answers." - Pablo Picasso
    Mark Rowlinson FIA | The Code Net

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •