ContactItem Write event not getting called

D

Dave

Anyone know how to do this?

In my COM addin using outlook 2000 I have a Write and a Close event for the
contact item and the Close event gets called, but the Write event never gets
called. Am I doing something wrong?

Private WithEvents objContact As Outlook.ContactItem

Private Sub objContact_Write(Cancel As Boolean)

End Sub

Private Sub objContact_Close(Cancel As Boolean)


End Sub

Dave
 
M

Michael Bauer [MVP - Outlook]

The Write event should be called if the item has changed and the user
chooses to save it. If the user first clicks to close the item, then saves
the item from the upcoming dialog then the Write event fires after the Close
event.

--
Viele Gruesse / Best regards
Michael Bauer - MVP Outlook
Quick-Cats - Categorize Outlook data:
http://www.vboffice.net/product.html?id=2006063&cmd=detail&lang=en&pub=6

Am Wed, 18 Apr 2007 15:52:19 -0500 schrieb Dave:
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top