Displaying all calendar items (including future recurring ones)

MasK

New member
Joined
Jun 28, 2008
Messages
1
Programming Experience
Beginner
Hi experts,
I've got a problem displaying future appointments.

Here is a sample code which I use to display future appointments:

VB.NET:
AppAppts = AppSession.Appointments.Items.Restrict("[Start] =>" + Today())

It does display all appointments which starts on/after today.
Now, the problem:

If I have an event on 4th July 07, which repeats every year, technically I should see my appointment on the 4th July 08 as well. I mean.. you see recurring appointments on your calendar.

But the code above doesn't! I takes the start date of this appt at the original date it was created, which is 4th July 2007.

I can't allow all recurring appointment to be in it.. if not my list will be filled with recurring items on my device.

Please help. Thanks!!
 
Back
Top