Formatting Outlook folders

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a strong VBA (Access and Excel) background, but am totally new to the
Outlook object model. I am frustrated that every time I create a new folder
in Outlook, it formats it with the reading pane on and with show in groups
checked.

I would really like to find (or write) some code that I could run that would
loop through all of the Personal folders in my Outlook and configure them so
that these are set to Off.

Anybody already have some code that will do this?
 
Am Tue, 14 Feb 2006 09:43:29 -0800 schrieb Dale Fye:

Showing the reading pane is not a property of a folder, but a method of the
Explorer (for details please see the Object Browser). That object has a
FolderSwitch event; use that and each time the folder sitches call the
ShowPane method.
 
Back
Top