Hooking to Send/Receive Sync event of Contacts

  • Thread starter Thread starter Deepak N
  • Start date Start date
D

Deepak N

How to attach an eventhandler for SendAndReceive event of Contact folders/Contact Items in outlook 2007 using VSTo AddIn. I tried using

Application.ActiveExplorer().SyncObjects.ForEach
{
SyncObject.SyncEnd += \\Do something
}

It is not working.
Submitted using http://www.outlookforums.com
 
When Outlook does a send/receive synch there is no way for you to tell it's
ongoing or when it starts or ends. You can only handle synchs that your code
starts.
 
Back
Top