So, I’m planning on creating a reminder app for WP7 using the Microsoft.Phone.Scheduler class, and I want to set up the Recurrence Interval of the reminder notification.
The problem is: The available interval is only Daily, Weekly, Monthly or Yearly.
I was wondering if there’s anyway to set up a Hourly Recurrence Interval.
The user will set up a initial time end and end time, and I wanted to have hourly notifications on this period of time. Is that possible. I was thinking of something like this:
while (beginTime < endTime)
{
beginTime += 01:00:00;
}
But that’s not right…
There isn’t.