![]() |
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. |
|
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
![]()
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
|
|||
|
|||
![]() 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
|
|||
|
|||
![]()
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 |
Display Modes | |
|
|
![]() |
||||
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 |