PC Review


Reply
Thread Tools Rating: Thread Rating: 1 votes, 5.00 average.

How do I keep all calendars showing, without having to click them.

 
 
=?Utf-8?B?eW9kYQ==?=
Guest
Posts: n/a
 
      17th Apr 2005
I keep extra calendars for all family members. But whenever I reopen Outlook,
I will have to check all the calendars to see them. Is there a way, Outlook
will show all of them at all times?
 
Reply With Quote
 
 
 
 
Milly Staples [MVP - Outlook]
Guest
Posts: n/a
 
      17th Apr 2005
Not at this time, but it is an often repeated request. Perhaps in the next
version?

--
Milly Staples [MVP - Outlook]

Post all replies to the group to keep the discussion intact. Due to
the (insert latest virus name here) virus, all mail sent to my personal
account will be deleted without reading.

After furious head scratching, yoda asked:

| I keep extra calendars for all family members. But whenever I reopen
| Outlook, I will have to check all the calendars to see them. Is there
| a way, Outlook will show all of them at all times?


 
Reply With Quote
 
Pat Garard
Guest
Posts: n/a
 
      17th Apr 2005
G'Day Yoda,

You can accomplish this with VBA code - although I am finding
that it occasionally "misfires".

In Outlook, press ALT+F11 to display the VBA window.

Upper Left there is a 'Tree" - double-click "ThisOutlookSession"
to display an empty code window, and paste the in code below.

Be careful to correct any line breaks that OE might have inserted.

Modify the Folder Names in the Application_Start() section to
suit your needs.

The Function GetFolder() is courtesy of Sue Mosher -
http://www.outlookcode.com/codedetail.aspx?id=824
--
Regards,
Pat Garard
Melbourne, Australia
_______________________

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Public Function GetFolder(strFolderPath As String) As MAPIFolder
' folder path needs to be something like
' "Public Folders\All Public Folders\Company\Sales"
Dim objApp As Outlook.Application
Dim objNS As Outlook.NameSpace
Dim colFolders As Outlook.Folders
Dim objFolder As Outlook.MAPIFolder
Dim arrFolders() As String
Dim I As Long
On Error Resume Next

strFolderPath = Replace(strFolderPath, "/", "\")
arrFolders() = Split(strFolderPath, "\")
Set objApp = CreateObject("Outlook.Application")
Set objNS = objApp.GetNamespace("MAPI")
Set objFolder = objNS.Folders.Item(arrFolders(0))
If Not objFolder Is Nothing Then
For I = 1 To UBound(arrFolders)
Set colFolders = objFolder.Folders
Set objFolder = Nothing
Set objFolder = colFolders.Item(arrFolders(I))
If objFolder Is Nothing Then
Exit For
End If
Next
End If

Set GetFolder = objFolder
Set colFolders = Nothing
Set objNS = Nothing
Set objApp = Nothing
End Function

Private Sub Application_Startup()
DoEvents
Application.ActiveExplorer.SelectFolder _
GetFolder("Personal Folders\Calendar")
DoEvents
Application.ActiveExplorer.SelectFolder _
GetFolder("Personal Folders\Calendar\SomeOtherCal")
DoEvents
' This next line put us back to Outlook Today
Application.ActiveExplorer.SelectFolder _
GetFolder("Personal Folders")
End Sub

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~


"yoda" <(E-Mail Removed)> wrote in message
news:BAB479C1-1730-42AE-9AE5-(E-Mail Removed)...
>I keep extra calendars for all family members. But whenever I reopen
>Outlook,
> I will have to check all the calendars to see them. Is there a way,
> Outlook
> will show all of them at all times?



 
Reply With Quote
 
Pat Garard
Guest
Posts: n/a
 
      18th Apr 2005
> The Function GetFolder() is courtesy of Sue Mosher -
> http://www.outlookcode.com/codedetail.aspx?id=824


Thanks are also due to Michael Bauer
--
Ich habe einen leeren Kopf!,
Pat Garard
Melbourne, Australia
_______________________

"Pat Garard" <apgarardATbigpondDOTnetDOTau> wrote in message
news:%(E-Mail Removed)...
> G'Day Yoda,
>
> You can accomplish this with VBA code - although I am finding
> that it occasionally "misfires".
>
> In Outlook, press ALT+F11 to display the VBA window.
>
> Upper Left there is a 'Tree" - double-click "ThisOutlookSession"
> to display an empty code window, and paste the in code below.
>
> Be careful to correct any line breaks that OE might have inserted.
>
> Modify the Folder Names in the Application_Start() section to
> suit your needs.
>
> The Function GetFolder() is courtesy of Sue Mosher -
> http://www.outlookcode.com/codedetail.aspx?id=824
> --
> Regards,
> Pat Garard
> Melbourne, Australia
> _______________________
>
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>
> Public Function GetFolder(strFolderPath As String) As MAPIFolder
> ' folder path needs to be something like
> ' "Public Folders\All Public Folders\Company\Sales"
> Dim objApp As Outlook.Application
> Dim objNS As Outlook.NameSpace
> Dim colFolders As Outlook.Folders
> Dim objFolder As Outlook.MAPIFolder
> Dim arrFolders() As String
> Dim I As Long
> On Error Resume Next
>
> strFolderPath = Replace(strFolderPath, "/", "\")
> arrFolders() = Split(strFolderPath, "\")
> Set objApp = CreateObject("Outlook.Application")
> Set objNS = objApp.GetNamespace("MAPI")
> Set objFolder = objNS.Folders.Item(arrFolders(0))
> If Not objFolder Is Nothing Then
> For I = 1 To UBound(arrFolders)
> Set colFolders = objFolder.Folders
> Set objFolder = Nothing
> Set objFolder = colFolders.Item(arrFolders(I))
> If objFolder Is Nothing Then
> Exit For
> End If
> Next
> End If
>
> Set GetFolder = objFolder
> Set colFolders = Nothing
> Set objNS = Nothing
> Set objApp = Nothing
> End Function
>
> Private Sub Application_Startup()
> DoEvents
> Application.ActiveExplorer.SelectFolder _
> GetFolder("Personal Folders\Calendar")
> DoEvents
> Application.ActiveExplorer.SelectFolder _
> GetFolder("Personal Folders\Calendar\SomeOtherCal")
> DoEvents
> ' This next line put us back to Outlook Today
> Application.ActiveExplorer.SelectFolder _
> GetFolder("Personal Folders")
> End Sub
>
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>
>
> "yoda" <(E-Mail Removed)> wrote in message
> news:BAB479C1-1730-42AE-9AE5-(E-Mail Removed)...
>>I keep extra calendars for all family members. But whenever I reopen
>>Outlook,
>> I will have to check all the calendars to see them. Is there a way,
>> Outlook
>> will show all of them at all times?

>
>



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Calendar not showing in 'My Calendars' Austin Powers Microsoft Outlook 16 9th Mar 2010 02:48 PM
Showing two simultaneous calendars and cannot delete one Grebington Microsoft Outlook 8 4th Dec 2008 02:56 PM
Outlook calendars not showing cmap@another.com Microsoft Outlook Calendar 0 11th Jul 2007 02:04 PM
Shared meetings are not showing on all calendars =?Utf-8?B?Q291Z2FyNTQ4?= Microsoft Outlook Calendar 0 6th Jun 2006 07:46 PM
Folders showing up as calendars Dan Orth Microsoft Outlook 0 21st Sep 2004 02:30 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 03:17 AM.