1. Public Folders?
2. "Open these addtitional mailboxes" in teh EX provider properties dialog
adds the whole mailbox with all its subfolders. Did you actually mean "File
| Open | Other User's Folder..."? That indeed only opens the specified the
default folder, but not its subfolers.
3. I am not exactly sure what you are asking. Interacts when you do what?
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
>I geuss I for got to press post:
> There are three reasons why I would like to understand the way outllok
[quoted text clipped - 34 lines]
>> > request actually connects to the server through VBA.
>> > Thanks!
Mike - 26 Apr 2006 18:50 GMT
Well the idea is when I login every day certain people add alot of contacts
to their lists and are often "too important", CO's VP's etc to add them to
the public folder lists themselves. I am a deliagate of each of those people
when I login each morning I would like to take all of the contacts in each of
those users folders and put them in a contacts list, so I have composite list
that I can post to a public folder.
on 2: I'm going to tools>email accounts>(next)>(double click microsoft
exchage server account)>more settings>Advanced>add--enter user name etc.
I can see the inbox but not the subfolders of the inbox and I am set as and
editor delegate for everything sunder the user I setup.
Maybe I'm thinking of this the wrong way but, my experiance up to this point
with vb has been interacting with Active Directory.
when I'm writting a script to interface with the ADDB I can say somthing like:
Set oComp = GetObject("LDAP://cn=myComputer cn=Computers,dc=domain,dc=local"))
I just want to know how to get an object from the exchange server. Be it a
user mail box or another users contact list
> 1. Public Folders?
> 2. "Open these addtitional mailboxes" in teh EX provider properties dialog
[quoted text clipped - 46 lines]
> >> > request actually connects to the server through VBA.
> >> > Thanks!
Dmitry Streblechenko - 26 Apr 2006 21:57 GMT
Are you saying that for the delegate mailboxes you only see "Mailbox - Your
boss" store with only *one* folder - the Inbox? Are you using "Folder List"
nav bar button or "Mail"?
If the mailbox is already added to the list of the delegate mailboxes, you
can access it through the Namespace.Folders collection (which returns the
list of top level folders).
If not, you can use Namespace.GetSharedDefaultFolder(), which lets you
access any default folder. If you need to get to the root folder of that
mailbox (e.g. if you want to enumerate the child folders), request the inbox
using GetSharedDefaultFolder, then read MAPIFoldder.Parent (will return the
inbox parent, which is the top level IPM folder of the mailbox).
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
> Well the idea is when I login every day certain people add alot of
> contacts
[quoted text clipped - 82 lines]
>> >> > request actually connects to the server through VBA.
>> >> > Thanks!