Writing to authorized folder

  • Thread starter Thread starter MarsDude
  • Start date Start date
M

MarsDude

Hi all,

When I receive authorization to have (full) access to someone else
agenda... How do I programmatically access it through my own profile?

What I'd like to do is have an application that writes an appointmen
in the agenda of someone else (who obviously gave me all neede
permissions) without switching profiles.

I can write to my own agenda without a problem with the program (whic
is not in VB, but I can read VB so any code examples are ver
welcome).

Thanx

Marcel (MarsDude
 
You can use the Namespace.GetSharedDefaultFolder method to access another
user's default Calendar folder. To create an appointment there, use the Add
method on the folder's Items collection.
 
Back
Top