Resolve calendar

  • Thread starter Thread starter Heloïse
  • Start date Start date
H

Heloïse

Hello

I want to resolve a calendar after a createrecipient of a collegue of the
society. For same calendars, it is ok, I can read all entries but for same
calendars I don't can resolve the calendar. Why ? Thanks for the answer.

Helo
 
What are you talking about? Are you trying to use
NameSpace.GetSharedDefaultFolder() with a created Recipient object? That
will only work if you have permissions to access the calendars in question.
 
I have created a NameSpace like this

Set nms = appOutlook.GetNamespace("MAPI")
Set autres = nms.CreateRecipient("Calendars'name of my collegue")
autres.Resolve
Set fld = nms.GetSharedDefaultFolder(autres, olFolderCalendar)

After this, fld returns an error that the name can't be readen and
"autres.resolved" return false.
Can coming the problem that a programm is Outlook 2003 and the other is
Outlook 2007 ?
Thank's
 
The problem is that your Recipient object is not resolving. You are
providing incorrect information for that Recipient. I have no idea what you
are supplying or what would be correct. Try the SMTP address or the Exchange
alias of that person.
 
Back
Top