A Microsoft Outlook email forum. Outlook Banter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » Outlook Banter forum » Microsoft Outlook Email Newsgroups » Add-ins for Outlook
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

SafeDistList member has no FreeBusy



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old July 10th 07, 12:43 AM posted to microsoft.public.outlook.program_addins
Klemens
external usenet poster
 
Posts: 7
Default SafeDistList member has no FreeBusy

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

Ads
  #2  
Old July 10th 07, 01:06 AM posted to microsoft.public.outlook.program_addins
Dmitry Streblechenko
external usenet poster
 
Posts: 2,116
Default SafeDistList member has no FreeBusy

Do you mean why doesn't it raise the error the way Outlook does?

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool

"Klemens" wrote in message
ps.com...
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



  #3  
Old July 10th 07, 07:58 AM posted to microsoft.public.outlook.program_addins
Klemens
external usenet poster
 
Posts: 7
Default SafeDistList member has no FreeBusy

Hello Dmitry,
No, I hoped it would just work with redemption. It works with a
recipient which is created from scratch and the address entry of this
recipient looks pretty much the same as the address entry of the
recipient in the distribution list. So there should be a chance to get
free/busy info for this recipient too.
- Klemens

On 10 Jul., 01:06, "Dmitry Streblechenko" wrote:
Do you mean why doesn't it raise the error the way Outlook does?

Dmitry Streblechenko (MVP)http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool

"Klemens" wrote in message

ps.com...



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- Zitierten Text ausblenden -


- Zitierten Text anzeigen -



  #4  
Old July 10th 07, 06:55 PM posted to microsoft.public.outlook.program_addins
Dmitry Streblechenko
external usenet poster
 
Posts: 2,116
Default SafeDistList member has no FreeBusy

Well, if Outlook reports "Cannot load free/busy information", there is
probably a reason for that...
What exactly do you mean by "pretty much the ssame"? It is either the same
or it is not...

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool

"Klemens" wrote in message
ups.com...
Hello Dmitry,
No, I hoped it would just work with redemption. It works with a
recipient which is created from scratch and the address entry of this
recipient looks pretty much the same as the address entry of the
recipient in the distribution list. So there should be a chance to get
free/busy info for this recipient too.
- Klemens

On 10 Jul., 01:06, "Dmitry Streblechenko" wrote:
Do you mean why doesn't it raise the error the way Outlook does?

Dmitry Streblechenko (MVP)http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool

"Klemens" wrote in message

ps.com...



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- Zitierten Text ausblenden -


- Zitierten Text anzeigen -





  #5  
Old July 10th 07, 08:57 PM posted to microsoft.public.outlook.program_addins
Klemens
external usenet poster
 
Posts: 7
Default SafeDistList member has no FreeBusy

"Pretty much" means that the recipients I receive from the GetMember
are not equivalent structural-wise so I only can try guessing. What I
see is that the RDORecipient and the SafeRecipient refer to the same
entry ID and both refer to an "EX" address whereas the native Outlook
recipient refers to a different Entry ID and to an address type
"SMTP". This makes me think that there would be a chance for the
SafeRecipient to support the FreeBusy when the RDORecipient does.
Regards,
Klemens

On 10 Jul., 18:55, "Dmitry Streblechenko" wrote:
Well, if Outlook reports "Cannot load free/busy information", there is
probably a reason for that...
What exactly do you mean by "pretty much the ssame"? It is either the same
or it is not...

Dmitry Streblechenko (MVP)http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool

"Klemens" wrote in message

ups.com...



Hello Dmitry,
No, I hoped it would just work with redemption. It works with a
recipient which is created from scratch and the address entry of this
recipient looks pretty much the same as the address entry of the
recipient in the distribution list. So there should be a chance to get
free/busy info for this recipient too.
- Klemens


On 10 Jul., 01:06, "Dmitry Streblechenko" wrote:
Do you mean why doesn't it raise the error the way Outlook does?


Dmitry Streblechenko (MVP)http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool


"Klemens" wrote in message


oups.com...


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- Zitierten Text ausblenden -


- Zitierten Text anzeigen -- Zitierten Text ausblenden -


- Zitierten Text anzeigen -



  #6  
Old July 10th 07, 10:46 PM posted to microsoft.public.outlook.program_addins
Dmitry Streblechenko
external usenet poster
 
Posts: 2,116
Default SafeDistList member has no FreeBusy

So Outlook returns an SMTP address for that DL member, but Redemption
returns EX (which is correct, right)?
Do you see the f/b for that user from the Outlook UI?

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool

"Klemens" wrote in message
ups.com...
"Pretty much" means that the recipients I receive from the GetMember
are not equivalent structural-wise so I only can try guessing. What I
see is that the RDORecipient and the SafeRecipient refer to the same
entry ID and both refer to an "EX" address whereas the native Outlook
recipient refers to a different Entry ID and to an address type
"SMTP". This makes me think that there would be a chance for the
SafeRecipient to support the FreeBusy when the RDORecipient does.
Regards,
Klemens

On 10 Jul., 18:55, "Dmitry Streblechenko" wrote:
Well, if Outlook reports "Cannot load free/busy information", there is
probably a reason for that...
What exactly do you mean by "pretty much the ssame"? It is either the
same
or it is not...

Dmitry Streblechenko (MVP)http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool

"Klemens" wrote in message

ups.com...



Hello Dmitry,
No, I hoped it would just work with redemption. It works with a
recipient which is created from scratch and the address entry of this
recipient looks pretty much the same as the address entry of the
recipient in the distribution list. So there should be a chance to get
free/busy info for this recipient too.
- Klemens


On 10 Jul., 01:06, "Dmitry Streblechenko" wrote:
Do you mean why doesn't it raise the error the way Outlook does?


Dmitry Streblechenko (MVP)http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool


"Klemens" wrote in message


oups.com...


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- Zitierten Text ausblenden -


- Zitierten Text anzeigen -- Zitierten Text ausblenden -


- Zitierten Text anzeigen -





  #7  
Old July 16th 07, 09:42 PM posted to microsoft.public.outlook.program_addins
Klemens
external usenet poster
 
Posts: 7
Default SafeDistList member has no FreeBusy

1. Yes, right
2. Yes, I see f/b in the UI.

Thanks
Klemens

On 10 Jul., 22:46, "Dmitry Streblechenko" wrote:
So Outlook returns an SMTP address for thatDLmember, but Redemption
returns EX (which is correct, right)?
Do you see the f/b for that user from the Outlook UI?

Dmitry Streblechenko (MVP)http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool

"Klemens" wrote in message

ups.com...



"Pretty much" means that the recipients I receive from the GetMember
are not equivalent structural-wise so I only can try guessing. What I
see is that the RDORecipient and the SafeRecipient refer to the same
entry ID and both refer to an "EX" address whereas the native Outlook
recipient refers to a different Entry ID and to an address type
"SMTP". This makes me think that there would be a chance for the
SafeRecipient to support the FreeBusy when the RDORecipient does.
Regards,
Klemens


On 10 Jul., 18:55, "Dmitry Streblechenko" wrote:
Well, if Outlook reports "Cannot load free/busy information", there is
probably a reason for that...
What exactly do you mean by "pretty much the ssame"? It is either the
same
or it is not...


Dmitry Streblechenko (MVP)http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool


"Klemens" wrote in message


roups.com...


Hello Dmitry,
No, I hoped it would just work with redemption. It works with a
recipient which is created from scratch and the address entry of this
recipient looks pretty much the same as the address entry of the
recipient in the distribution list. So there should be a chance to get
free/busy info for this recipient too.
- Klemens


On 10 Jul., 01:06, "Dmitry Streblechenko" wrote:
Do you mean why doesn't it raise the error the way Outlook does?


Dmitry Streblechenko (MVP)http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool


"Klemens" wrote in message


oups.com...


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- Zitierten Text ausblenden -


- Zitierten Text anzeigen -- Zitierten Text ausblenden -


- Zitierten Text anzeigen -- Zitierten Text ausblenden -


- Zitierten Text anzeigen -



  #8  
Old July 16th 07, 10:11 PM posted to microsoft.public.outlook.program_addins
Dmitry Streblechenko
external usenet poster
 
Posts: 2,116
Default SafeDistList member has no FreeBusy

Send an e-mail to my private address and I will send you a version of thee
dll that creates a log file.

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool

"Klemens" wrote in message
oups.com...
1. Yes, right
2. Yes, I see f/b in the UI.

Thanks
Klemens

On 10 Jul., 22:46, "Dmitry Streblechenko" wrote:
So Outlook returns an SMTP address for thatDLmember, but Redemption
returns EX (which is correct, right)?
Do you see the f/b for that user from the Outlook UI?

Dmitry Streblechenko (MVP)http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool

"Klemens" wrote in message

ups.com...



"Pretty much" means that the recipients I receive from the GetMember
are not equivalent structural-wise so I only can try guessing. What I
see is that the RDORecipient and the SafeRecipient refer to the same
entry ID and both refer to an "EX" address whereas the native Outlook
recipient refers to a different Entry ID and to an address type
"SMTP". This makes me think that there would be a chance for the
SafeRecipient to support the FreeBusy when the RDORecipient does.
Regards,
Klemens


On 10 Jul., 18:55, "Dmitry Streblechenko" wrote:
Well, if Outlook reports "Cannot load free/busy information", there is
probably a reason for that...
What exactly do you mean by "pretty much the ssame"? It is either the
same
or it is not...


Dmitry Streblechenko (MVP)http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool


"Klemens" wrote in message


roups.com...


Hello Dmitry,
No, I hoped it would just work with redemption. It works with a
recipient which is created from scratch and the address entry of
this
recipient looks pretty much the same as the address entry of the
recipient in the distribution list. So there should be a chance to
get
free/busy info for this recipient too.
- Klemens


On 10 Jul., 01:06, "Dmitry Streblechenko"
wrote:
Do you mean why doesn't it raise the error the way Outlook does?


Dmitry Streblechenko (MVP)http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool


"Klemens" wrote in message


oups.com...


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- Zitierten Text ausblenden -


- Zitierten Text anzeigen -- Zitierten Text ausblenden -


- Zitierten Text anzeigen -- Zitierten Text ausblenden -


- Zitierten Text anzeigen -





 




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
member not found newbee Outlook - General Queries 0 January 31st 07 03:30 AM
Help with FREEBUSY callmedoug Outlook and VBA 4 December 4th 06 08:06 PM
distribution list member name field Hal Outlook and VBA 1 October 3rd 06 03:40 AM
Create Group Member DGuess Outlook Express 14 June 30th 06 04:06 AM
Add / Create member(s) to a distriubutionlist Kristof Ternoey Outlook and VBA 4 February 13th 06 09:37 PM


All times are GMT +1. The time now is 03:00 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2025 Outlook Banter.
The comments are property of their posters.