A Microsoft Outlook email forum. Outlook Banter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » Outlook Banter forum » Microsoft Outlook Email Newsgroups » Add-ins for Outlook
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Write event not firing in list view



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old February 13th 07, 02:40 PM posted to microsoft.public.outlook.program_addins
Rick H
external usenet poster
 
Posts: 7
Default Write event not firing in list view

I have created a addin that updates a sql DB with all info from the
calendar, task and contacts.As changes are made in Outlook the are
updated to the DB and as they are update in the DB the changes sent to
Outlook (this is working fine). The problem is, I originally had only
code on the write event of an item but in the list view of a folder
changes made to an item is not firing the write event. So I'm now
using SyncEnd() event and checking LastModificationTime against a
date I store in the registry after each sync.

Outlook 2002 and 2003, VB6

Public Sub mysync_SyncEnd()
If ls_task_sync = "Y" Then
TaskDateCheck
End If
If ls_cal_sync = "Y" Then
CalendarDateCheck
End If
If ls_con_sync = "Y" Then
ContactDateCheck
End If
End Sub

'Some code from CalendarDateCheck:

ls_mod_time = sh.RegRead(key & "outlook_contacts_last_modify")
ls_find = "[LastModificationTime] '" & Format(ls_mod_time, "ddddd
h:nn AMPM") & "'"
Set SafeItems = myContacts.Find(ls_find) 'Find first Appointment
Dim ade
Do While Not (SafeItems Is Nothing)
'Process data for items found
...
This seemed to be working BUT...........

Now the problem is that the EndSync event isn't firing consistently.
If the user hits F9 it works everytime. But on the timed sync setup in
Outlook it is not ever getting to the syncend event. I setup the sync
to include the folders I'm syncing with.

Hope that makes sense.
My question, is there an event or anyway to make sure I capture any
item changed in Outlook.Even when items are changed using ActiveSync.

Any help would be appreciated

Thanks, RickH

  #2  
Old February 14th 07, 07:05 AM posted to microsoft.public.outlook.program_addins
Michael Bauer [MVP - Outlook]
external usenet poster
 
Posts: 1,885
Default Write event not firing in list view


Why don't you use the ItemAdd, ItemChange and ItemRemove events?

--
Viele Gruesse / Best regards
Michael Bauer - MVP Outlook
Keep your Outlook categories organized!
http://www.shareit.com/product.html?...4&languageid=1
(German: http://www.VBOffice.net/product.html?pub=6)

Am 13 Feb 2007 06:40:09 -0800 schrieb Rick H:

I have created a addin that updates a sql DB with all info from the
calendar, task and contacts.As changes are made in Outlook the are
updated to the DB and as they are update in the DB the changes sent to
Outlook (this is working fine). The problem is, I originally had only
code on the write event of an item but in the list view of a folder
changes made to an item is not firing the write event. So I'm now
using SyncEnd() event and checking LastModificationTime against a
date I store in the registry after each sync.

Outlook 2002 and 2003, VB6

Public Sub mysync_SyncEnd()
If ls_task_sync = "Y" Then
TaskDateCheck
End If
If ls_cal_sync = "Y" Then
CalendarDateCheck
End If
If ls_con_sync = "Y" Then
ContactDateCheck
End If
End Sub

'Some code from CalendarDateCheck:

ls_mod_time = sh.RegRead(key & "outlook_contacts_last_modify")
ls_find = "[LastModificationTime] '" & Format(ls_mod_time, "ddddd
h:nn AMPM") & "'"
Set SafeItems = myContacts.Find(ls_find) 'Find first Appointment
Dim ade
Do While Not (SafeItems Is Nothing)
'Process data for items found
..
This seemed to be working BUT...........

Now the problem is that the EndSync event isn't firing consistently.
If the user hits F9 it works everytime. But on the timed sync setup in
Outlook it is not ever getting to the syncend event. I setup the sync
to include the folders I'm syncing with.

Hope that makes sense.
My question, is there an event or anyway to make sure I capture any
item changed in Outlook.Even when items are changed using ActiveSync.

Any help would be appreciated

Thanks, RickH

  #3  
Old February 21st 07, 02:53 PM posted to microsoft.public.outlook.program_addins
Rick H
external usenet poster
 
Posts: 7
Default Write event not firing in list view

On Feb 14, 2:05 am, "Michael Bauer [MVP - Outlook]"
wrote:
Why don't you use the ItemAdd, ItemChange and ItemRemove events?

--
Viele Gruesse / Best regards
Michael Bauer - MVP Outlook
Keep your Outlook categories organized!
http://www.shareit.com/product.html?...4&languageid=1
(German:http://www.VBOffice.net/product.html?pub=6)

Am 13 Feb 2007 06:40:09 -0800 schrieb Rick H:



I have created a addin that updates a sql DB with all info from the
calendar, task and contacts.As changes are made in Outlook the are
updated to the DB and as they are update in the DB the changes sent to
Outlook (this is working fine). The problem is, I originally had only
code on the write event of an item but in the list view of a folder
changes made to an item is not firing the write event. So I'm now
using SyncEnd() event and checking LastModificationTime against a
date I store in the registry after each sync.


Outlook 2002 and 2003, VB6


Public Sub mysync_SyncEnd()
If ls_task_sync = "Y" Then
TaskDateCheck
End If
If ls_cal_sync = "Y" Then
CalendarDateCheck
End If
If ls_con_sync = "Y" Then
ContactDateCheck
End If
End Sub


'Some code from CalendarDateCheck:


ls_mod_time = sh.RegRead(key & "outlook_contacts_last_modify")
ls_find = "[LastModificationTime] '" & Format(ls_mod_time, "ddddd
h:nn AMPM") & "'"
Set SafeItems = myContacts.Find(ls_find) 'Find first Appointment
Dim ade
Do While Not (SafeItems Is Nothing)
'Process data for items found
..
This seemed to be working BUT...........


Now the problem is that the EndSync event isn't firing consistently.
If the user hits F9 it works everytime. But on the timed sync setup in
Outlook it is not ever getting to the syncend event. I setup the sync
to include the folders I'm syncing with.


Hope that makes sense.
My question, is there an event or anyway to make sure I capture any
item changed in Outlook.Even when items are changed using ActiveSync.


Any help would be appreciated


Thanks, RickH- Hide quoted text -


- Show quoted text -


I originally had the ItemAdd, ItemChange and ItemRemove working but it
was not firing when ActiveSync was doing the change. I put these
events back in as they do seem to be more consistant then ItemWrite.
Thanks, Rick

 




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
MouseWheel event not firing aiKeith Outlook - Using Forms 1 February 9th 07 08:07 PM
Problem with Event firing of Function MyListbox_Click() John E. Outlook - Using Forms 3 January 2nd 07 12:11 AM
How to write new calendar event from internet application? jhajko via OfficeKB.com Outlook - Calandaring 2 May 9th 06 03:56 PM
Mapi Folder Items ItemChange event is not firing AtulSureka Outlook and VBA 3 February 5th 06 06:25 PM
Outlook Addin CommandBarButton Click Event Not Firing Stu Add-ins for Outlook 0 January 17th 06 02:10 AM


All times are GMT +1. The time now is 06:30 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2025 Outlook Banter.
The comments are property of their posters.