navigation pane question

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

Guest

this peace of code shows the folder list in the navigation pane. Is there
anyway to show the calendar pane view, where you can select multiple
calendars.

Const olFolderList = 2
Set objExpl = Application.ActiveExplorer
If Not (objExpl.IsPaneVisible(olFolderList)) Then
objExpl.ShowPane olFolderList, True
End If
Thanks,

Irene
 
Am Thu, 16 Mar 2006 18:29:27 -0800 schrieb Irene:

Irene, that´s interesting. FolderList=False and NavigationPane=true should
do it - but it doesn´t immediately. It seems to be necessary that you also
switch to another folder, e.g. Contacts, and then switch back.
 
Back
Top