Open Outlook in Shared Calendar View?

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

Guest

Network consists of a small amount of users who do not use individual
calendars but share one specific calendar. Since the users only use Outlook
for its shared calendar feature, is there a way to make all accounts in
Outlook open in one single Shared Calendar view rather than opening in
Outlook Today?
 
Am Sat, 28 Jan 2006 06:05:27 -0800 schrieb PCGrammy:

Please click Tools/Options/Extended options and select the folder you
want to.
 
In Outlook 2003, when I click Tools/Options...I see seven tabs, none of which
are listed as Extended options.
 
Am Sat, 28 Jan 2006 13:29:26 -0800 schrieb PCGrammy:

"Extended Options" is a button on a tab, which I don´t know how to
translate. Maybe "More", "Extended", "Advanced" or something like that.
 
By going to Tools, Options, Other tab, and clicking on the Advanced Button,
I'm able to set Calendar as the default startup option. However, I'm still
not able to make the shared calendar the default when it opens. Any more
suggestions? Thanks.
 
Am Sun, 29 Jan 2006 11:46:29 -0800 schrieb PCGrammy:

Yes, another way is to set the folder in the StartUp event. Sample:


Private Sub Application_Startup()
Dim oFld As Outlook.MAPIFolder
Set oFld = Application.Session.GetDefaultFolder(olFolderContacts)
Set Application.ActiveExplorer.CurrentFolder = oFld
End Sub

For getting the folder you want to you can use Sue´s GetFolder function:
http://www.outlookcode.com/d/code/getfolder.htm
 
Back
Top