View Single Post
  #3  
Old January 17th 08, 10:45 AM posted to microsoft.public.outlook.program_addins
CK
external usenet poster
 
Posts: 33
Default Outlook 2003 Event

Michael,

Thanks for the reply. I have looked at the SelectionChange event. I can get
the selected folder but not the selected item when i select one of the
contact item. Am I getting this correct? Do you have any example on how it is
done? I am kind of lost here.


"Michael Bauer [MVP - Outlook]" wrote:



Additionally you need to track the SelectionChange event, which tells you
what item(s) is/are selected. If you move or delete the last item from a
folder you don't get ItemRemove but only SelectionChange.

--
Best regards
Michael Bauer - MVP Outlook
Synchronize Outlook Categories:
http://www.vboffice.net/product.html?id=2006063&cmd=detail&lang=en&pub=6

Am Wed, 16 Jan 2008 19:53:01 -0800 schrieb ck:

Hi all,

I am trying to get contact item information when user moves the particular
contact item to another folder. I have checked in MSDN library for the

list
of event in Outlook 2003. The closest i can get is the ItemRemove event.

Public WithEvents myOlItems As Outlook.Items

Private Sub myOlItems_ItemRemove()
'Do something here
End Sub

The problem is that ItemRemove event does not have any parameter. Do you
know any event that work like ItemRemove event and have Item as parameter.

Thanks.


Ads