K
Klemens
I want to get the FreeBusy info for the members of a private
distribution list in my contact folder. When I do it via Outlook OM
directly the second line below
Set oRecp = oDistList.GetMember(i)
strFreeBusy = oRecp.FreeBusy(dtmStart, 30, True)
receives an error ("Cannot load free/busy information").
Using Redemption the second line
Set oSafeRecp = oSafeDistList.GetMember(i)
strFreeBusy = oSafeRecp.FreeBusy(dtmStart, 30, True)
returns w/o error but doesn't return any freebusy info.
Using RDO:
Set oRDORecp = oRDODistListItem.GetMember(i)
strFreeBusy = oRDORecp.GetFreeBusy(dtmStart, 30, True)
works fine (luckily).
Why does the Redemption variant not work? Bug? Feature? Workaround?
- Klemens
distribution list in my contact folder. When I do it via Outlook OM
directly the second line below
Set oRecp = oDistList.GetMember(i)
strFreeBusy = oRecp.FreeBusy(dtmStart, 30, True)
receives an error ("Cannot load free/busy information").
Using Redemption the second line
Set oSafeRecp = oSafeDistList.GetMember(i)
strFreeBusy = oSafeRecp.FreeBusy(dtmStart, 30, True)
returns w/o error but doesn't return any freebusy info.
Using RDO:
Set oRDORecp = oRDODistListItem.GetMember(i)
strFreeBusy = oRDORecp.GetFreeBusy(dtmStart, 30, True)
works fine (luckily).
Why does the Redemption variant not work? Bug? Feature? Workaround?
- Klemens