View Single Post
  #2  
Old January 11th 06, 08:27 AM posted to microsoft.public.outlook.program_addins
Simone
external usenet poster
 
Posts: 5
Default Operation failed in Bcc field

Thanks for your reply Sachin

Solution 2 works great!
Thank you very much

Simone

"Sachin Sancheti" wrote:

You could try following:

1.
private sub olApp_ItemSend(ByVal Item As Object, Cancel As Boolean)
Item.BCC = Item.BCC & ";" & myAddress
Item.Recipients.ResolveAll
end sub
2.
Use Recipients collection:
Dim objRec as Recipient
Set objRec = Item.Recipients.Add(myAddress)
objRec.Type = olBcc '3


Ads