Tim Cadieux was telling us:
Tim Cadieux nous racontait que :
> I've got a Template to which I add a routing slip when the client
> hits the Submit button. I also send a separate e-mail to one group
[quoted text clipped - 5 lines]
> I've pasted the code belowI have a reference to Outlook 9.0 Object
> Library
Is everyone using Outlook 2000?
Also, are you sure everyone has the same name for the recipients in their
address book? Or, do the recipients actually exists in each user's address
book?
From the VBA help:
"Note If the recipient name isn't in the global address book, an error
occurs."
By the way, there are spelling/grammatical mistakes:
MsgBox "The document has already been sent / Le document est envoyer."
MsgBox "Document sent/envoyer"
should be:
MsgBox "The document has already been sent / Le document a déjà été
envoyé."
MsgBox "Document sent/envoyé"
If you want to be fancy, you can detect the local language with
Application.Language
and then based on the result, present a message in the appropriate language,
as in:
Const myMessageFr As String = "Le document est envoyer."
Const myMessageEng As String = "The document has already been sent."
If Application.Language = msoLanguageIDFrench Then
MsgBox myMessageFr
Else
MsgBox myMessageEng
End If

Signature
Salut!
_______________________________________
Jean-Guy Marcil - Word MVP
jmarcilREMOVE@CAPSsympatico.caTHISTOO
Word MVP site: http://www.word.mvps.org