I wasn't going crazy. I think I found out what was going wrong. At
least partly.
Actually.
Even with the latest DLLs the querying isn't working 100%. Or maybe I'm
not using it properly.
As I posted earlier when I put constraints on the query the whole
calendar events are returned, and the query has no effects.
Actually the query DOES work IF I use StartTime but doesn't if I use
StartDate.
I only exchanged the two following lines with those below them to make
it work.
//query.StartDate = DateTime.Today.AddDays(0);
//query.EndDate = DateTime.Today.AddDays(2);
query.StartTime = DateTime.Now.AddDays(0);
query.EndTime = DateTime.Now.AddDays(2);
The commented lines do not work, Query has no effects
The lines with StartTime do work. For now :).
Cheers. And thank you so much for your hard work!
Your API rocks!
|