D
DENNIS BROWN
Hi,
I can't seem to nail down a problem with my filter in the Find method of Items object.
Here is what I'm doing:
My sFilter string is the following:
sFilter="[Start] >= '08/07/2007' AND [Start] <= '08/08/2007'"
and it returns a single recurring appointment I have on August 7, but not the all day event, and another timed appointment on that same day.
If I do
sFilter="[Start] >= '08/06/2007' AND [Start] < '08/08/2007'"
Then I get all of August 6 recurring, and *all* of August 7 appointments!
All I want is August 7 appointments--all 3 of them.
What am I doing wrong here?
I have the oFolderItems.IncludeRecurrences = TRUE
and oFolderItems.Sort("[Start]")
And I'm setting columns, but the
oOutlookAppointment=oFolderItems.Find(sFilter)
isn't doing what I want it to do!
Any suggestions?
I can't seem to nail down a problem with my filter in the Find method of Items object.
Here is what I'm doing:
My sFilter string is the following:
sFilter="[Start] >= '08/07/2007' AND [Start] <= '08/08/2007'"
and it returns a single recurring appointment I have on August 7, but not the all day event, and another timed appointment on that same day.
If I do
sFilter="[Start] >= '08/06/2007' AND [Start] < '08/08/2007'"
Then I get all of August 6 recurring, and *all* of August 7 appointments!
All I want is August 7 appointments--all 3 of them.
What am I doing wrong here?
I have the oFolderItems.IncludeRecurrences = TRUE
and oFolderItems.Sort("[Start]")
And I'm setting columns, but the
oOutlookAppointment=oFolderItems.Find(sFilter)
isn't doing what I want it to do!
Any suggestions?