I am trying to see if specific appointments or tasks have been modified
since the last sync date. Is there a way to do this using Win32 and not
MFC?

I am writing a small app that needs to be able to build a list of
appointments and tasks that have been modified in any way since the last
sync. I have looked in the POOM documentation and in the on-line help
and I can not see any properties or anything that would indicate to me
that the appointment or task is "dirty".

Is this even possible?

Thanks,
-Eric

Re: Is there a way to tell if a specific appointment/task has been modified? by J

J
Sun Jan 23 03:22:05 CST 2005

All the new entries will not have a server ID. The server Id is got when
sync is completed - so you could check for that or implement your own
tombstones or register for change notifications.


--
J Ravalia
jayrava@online.microsoft.com
This posting is provided "AS IS" with no warranties, and confers no rights

"Eric A. Bonney" <eric.bonney@vanhlebarsoftware.com> wrote in message
news:mvzId.6592$VZ2.5649@fe1.columbus.rr.com...
>I am trying to see if specific appointments or tasks have been modified
>since the last sync date. Is there a way to do this using Win32 and not
>MFC?
>
> I am writing a small app that needs to be able to build a list of
> appointments and tasks that have been modified in any way since the last
> sync. I have looked in the POOM documentation and in the on-line help and
> I can not see any properties or anything that would indicate to me that
> the appointment or task is "dirty".
>
> Is this even possible?
>
> Thanks,
> -Eric



Re: Is there a way to tell if a specific appointment/task has been by Eric

Eric
Sun Jan 23 17:25:16 CST 2005

J Ravalia [MSFT] said the following on 1/23/2005 4:22 AM:
> All the new entries will not have a server ID. The server Id is got when
> sync is completed - so you could check for that or implement your own
> tombstones or register for change notifications.

Ok, so the question for me is then if I create a dll that grabs
notification changes, since it will be running all the time, would this
be a bad method of programming? I need to monitor for changes or
additions/deletions so that I can keep track of what to do, but I don't
want to eat up processing power either.

Looking for the server Id is just fine, but then once the appointment
has been synced and received an Id, then I won't be able to get any new
changes. So the notification change is the only method that will work
for me.

Thanks,
-Eric