<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Open Public folder (calendar) at startup</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/open-public-folder-calendar-at-startup/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers/open-public-folder-calendar-at-startup/</link>
	<description></description>
	<pubDate>Sat, 28 Nov 2009 20:43:52 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
		<item>
		<title>By: Schmidtw</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/open-public-folder-calendar-at-startup/#comment-54518</link>
		<dc:creator>Schmidtw</dc:creator>
		<pubDate>Thu, 10 Jul 2008 15:08:00 +0000</pubDate>
		<guid isPermaLink="false">#comment-54518</guid>
		<description>the link didn't show:

http://www.outlookcode.com/d/code/getfolder.htm</description>
		<content:encoded><![CDATA[<p>the link didn&#8217;t show:</p>
<p>&nbsp;&lt;a href="http://www.outlookcode.com/d/code/getfolder.htm" title="http://www.outlookcode.com/d/code/getfolder.htm" target="_blank"&gt;http://www.outlookcode.com/d/code/getfol&#8230;&lt;/a&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Schmidtw</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/open-public-folder-calendar-at-startup/#comment-54516</link>
		<dc:creator>Schmidtw</dc:creator>
		<pubDate>Thu, 10 Jul 2008 15:06:54 +0000</pubDate>
		<guid isPermaLink="false">#comment-54516</guid>
		<description>There is no standard feature in Outlook that will let you do this.  You will have to do some VB/VBA/VBScript programming to accomplish this task.

Here is some sample code:

[CODE]
Set MyFolder = GetFolder("Public Folders\All 
Public Folders\DDD\DDD Calendar").Items 


Public Function GetFolder(strFolderPath As String) 
As MAPIFolder 
' strFolderPath needs to be something like 
' "Public Folders\All Public 
Folders\Company\Sales" or 
' "Personal Folders\Inbox\My Folder" 

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 = 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 
[/CODE]

And here is a site with a bit more information on the subject as I am no expert on VB/VBA/VBScript programming:

[A href="http://www.outlookcode.com/d/code/getfolder.htm"]
[/A]</description>
		<content:encoded><![CDATA[<p>There is no standard feature in Outlook that will let you do this.  You will have to do some VB/VBA/VBScript programming to accomplish this task.</p>
<p>Here is some sample code:</p>
<pre>
Set MyFolder = GetFolder(&#8221;Public Folders\All
Public Folders\DDD\DDD Calendar&#8221;).Items 

Public Function GetFolder(strFolderPath As String)
As MAPIFolder
&#8216; strFolderPath needs to be something like
&#8216; &#8220;Public Folders\All Public
Folders\Company\Sales&#8221; or
&#8216; &#8220;Personal Folders\Inbox\My Folder&#8221; 

Dim objApp As Outlook.Application
Dim objNS As&nbsp;&lt;a href="http://Outlook.Name" title="http://Outlook. " target="_blank"&gt;Outlook.Name&lt;/a&gt;Space
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, &#8220;/&#8221;, &#8220;\&#8221;)
arrFolders() = Split(strFolderPath, &#8220;\&#8221;)
Set objApp = Application
Set objNS = objApp.GetNamespace(&#8221;MAPI&#8221;)
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
</pre>
<p>And here is a site with a bit more information on the subject as I am no expert on VB/VBA/VBScript programming:</p>
<p><a href="http://www.outlookcode.com/d/code/getfolder.htm"><br />
</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: RoninV</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/open-public-folder-calendar-at-startup/#comment-54500</link>
		<dc:creator>RoninV</dc:creator>
		<pubDate>Wed, 09 Jul 2008 21:38:35 +0000</pubDate>
		<guid isPermaLink="false">#comment-54500</guid>
		<description>In an Exchange environment, each user (by default) has Exchange as its default Email account, but I'm not looking at emails. I want to change a user's default calendar to one of the public calendars. If this is possible (Outlook 2007, Vista, Exchange 2003), the users calendar views (To- Do Bar, etc.) will be focused on that user's public calendar (folder) not the user's personal calendar.</description>
		<content:encoded><![CDATA[<p>In an Exchange environment, each user (by default) has Exchange as its default Email account, but I&#8217;m not looking at emails. I want to change a user&#8217;s default calendar to one of the public calendars. If this is possible (Outlook 2007, Vista, Exchange 2003), the users calendar views (To- Do Bar, etc.) will be focused on that user&#8217;s public calendar (folder) not the user&#8217;s personal calendar.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- dynamic -->