<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for Access Easy Tips</title>
	<atom:link href="http://accesstips.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://accesstips.wordpress.com</link>
	<description>A WordPress.com weblog about Microsoft Access Tips and Code Samples</description>
	<lastBuildDate>Sun, 15 Jan 2012 04:56:11 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>Comment on From Access to Outlook-Add Your Custom Data to the Outlook Calendar by Patrick Wood</title>
		<link>http://accesstips.wordpress.com/2008/09/03/from-access-to-outlook-add-custom-data-to-your-outlook-calendar/#comment-1326</link>
		<dc:creator><![CDATA[Patrick Wood]]></dc:creator>
		<pubDate>Sun, 15 Jan 2012 04:56:11 +0000</pubDate>
		<guid isPermaLink="false">http://accesstips.wordpress.com/?p=102#comment-1326</guid>
		<description><![CDATA[Hi Sam,

I am sorry that I just came across your comment. Somehow I missed it. As to your question GetFolderFromPath is not a part of Outlook VBA. Sue Mosher has a GetFolderPath Function in her 2007 book and GetFolder Function in her 2002 book code that uses the folder path. You can download the code from this page: http://www.outlookcode.com/member/book.aspx]]></description>
		<content:encoded><![CDATA[<p>Hi Sam,</p>
<p>I am sorry that I just came across your comment. Somehow I missed it. As to your question GetFolderFromPath is not a part of Outlook VBA. Sue Mosher has a GetFolderPath Function in her 2007 book and GetFolder Function in her 2002 book code that uses the folder path. You can download the code from this page: <a href="http://www.outlookcode.com/member/book.aspx" rel="nofollow">http://www.outlookcode.com/member/book.aspx</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on From Access to Outlook-Add Your Custom Data to the Outlook Calendar by Sam Bremner</title>
		<link>http://accesstips.wordpress.com/2008/09/03/from-access-to-outlook-add-custom-data-to-your-outlook-calendar/#comment-1325</link>
		<dc:creator><![CDATA[Sam Bremner]]></dc:creator>
		<pubDate>Tue, 29 Nov 2011 17:02:39 +0000</pubDate>
		<guid isPermaLink="false">http://accesstips.wordpress.com/?p=102#comment-1325</guid>
		<description><![CDATA[hi Patrick,

This article has been very usefull. Thanks so much.
I have one question... Is it possible to use GetFolderFromPath instead of GetFolderFromID to call a folder from the public folders and if so do you know how to do this?

Thanks

Sam]]></description>
		<content:encoded><![CDATA[<p>hi Patrick,</p>
<p>This article has been very usefull. Thanks so much.<br />
I have one question&#8230; Is it possible to use GetFolderFromPath instead of GetFolderFromID to call a folder from the public folders and if so do you know how to do this?</p>
<p>Thanks</p>
<p>Sam</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on From Access to Outlook-Add Your Custom Data to the Outlook Calendar by Patrick Wood</title>
		<link>http://accesstips.wordpress.com/2008/09/03/from-access-to-outlook-add-custom-data-to-your-outlook-calendar/#comment-1323</link>
		<dc:creator><![CDATA[Patrick Wood]]></dc:creator>
		<pubDate>Fri, 21 Oct 2011 05:47:52 +0000</pubDate>
		<guid isPermaLink="false">http://accesstips.wordpress.com/?p=102#comment-1323</guid>
		<description><![CDATA[Hi Rory,
You are using code to make sure you pass to Outlook the proper data types for some of the values. But you need to verify all the data types that you are passing to Outlook.
You need to use Nz(Me!ApptLength, 30) or some other number for the length of your appointments. Text boxes tend to produce numbers as strings even when we enter numbers.
Also you need to use something like Nz(Me!Mytextbox, &quot;&quot;) so that you do not pass a Null where a string is required which will cause the error you saw. The Nz Function is good to use because it allows you to use either a string or an integer if the value is Null.

If you do that and you still have problems you may need to use code to verify the Date and Time is being passed in the correct format for Outlook.

Of course the best way to do this would be to set a breakpoint and step through the code line by line until you see exactly where the error is occurring.]]></description>
		<content:encoded><![CDATA[<p>Hi Rory,<br />
You are using code to make sure you pass to Outlook the proper data types for some of the values. But you need to verify all the data types that you are passing to Outlook.<br />
You need to use Nz(Me!ApptLength, 30) or some other number for the length of your appointments. Text boxes tend to produce numbers as strings even when we enter numbers.<br />
Also you need to use something like Nz(Me!Mytextbox, &#8220;&#8221;) so that you do not pass a Null where a string is required which will cause the error you saw. The Nz Function is good to use because it allows you to use either a string or an integer if the value is Null.</p>
<p>If you do that and you still have problems you may need to use code to verify the Date and Time is being passed in the correct format for Outlook.</p>
<p>Of course the best way to do this would be to set a breakpoint and step through the code line by line until you see exactly where the error is occurring.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on From Access to Outlook-Add Your Custom Data to the Outlook Calendar by Rory Blundell</title>
		<link>http://accesstips.wordpress.com/2008/09/03/from-access-to-outlook-add-custom-data-to-your-outlook-calendar/#comment-1322</link>
		<dc:creator><![CDATA[Rory Blundell]]></dc:creator>
		<pubDate>Thu, 20 Oct 2011 10:12:50 +0000</pubDate>
		<guid isPermaLink="false">http://accesstips.wordpress.com/?p=102#comment-1322</guid>
		<description><![CDATA[Hi Patrick...a very good piece. 

I have been able to get it to work for my default calendar on outlook. However, when i try and use the code above to choose the calendar I want it to go to i keep getting the error message &quot;Error 13: Type Mismatch&quot;. 

I was hoping you could have a quick look at my code and correct me where wrong. 

 Dim outobj As Outlook.Application
            Dim outappt As Outlook.AppointmentItem
            Dim olNS As Outlook.NameSpace
            Set outobj = CreateObject(&quot;outlook.application&quot;)
            Set olNS = outobj.GetNamespace(&quot;MAPI&quot;)
            Set outappt = olNS.PickFolder
            With outappt
               .Start = Me!ApptDate &amp; &quot; &quot; &amp; Me!ApptTime
               .Duration = Me!ApptLength
               .Subject = Me!Appt
               If Not IsNull(Me!ApptNotes) Then .Body = Me!ApptNotes
               If Not IsNull(Me!ApptLocation) Then .Location = _
                  Me!ApptLocation
               If Me!ApptReminder Then
                  .ReminderMinutesBeforeStart = Me!ReminderMinutes
                  .ReminderSet = True

Thanks a lot. 

R]]></description>
		<content:encoded><![CDATA[<p>Hi Patrick&#8230;a very good piece. </p>
<p>I have been able to get it to work for my default calendar on outlook. However, when i try and use the code above to choose the calendar I want it to go to i keep getting the error message &#8220;Error 13: Type Mismatch&#8221;. </p>
<p>I was hoping you could have a quick look at my code and correct me where wrong. </p>
<p> Dim outobj As Outlook.Application<br />
            Dim outappt As Outlook.AppointmentItem<br />
            Dim olNS As Outlook.NameSpace<br />
            Set outobj = CreateObject(&#8220;outlook.application&#8221;)<br />
            Set olNS = outobj.GetNamespace(&#8220;MAPI&#8221;)<br />
            Set outappt = olNS.PickFolder<br />
            With outappt<br />
               .Start = Me!ApptDate &amp; &#8221; &#8221; &amp; Me!ApptTime<br />
               .Duration = Me!ApptLength<br />
               .Subject = Me!Appt<br />
               If Not IsNull(Me!ApptNotes) Then .Body = Me!ApptNotes<br />
               If Not IsNull(Me!ApptLocation) Then .Location = _<br />
                  Me!ApptLocation<br />
               If Me!ApptReminder Then<br />
                  .ReminderMinutesBeforeStart = Me!ReminderMinutes<br />
                  .ReminderSet = True</p>
<p>Thanks a lot. </p>
<p>R</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on From Access to Outlook-Add Your Custom Data to the Outlook Calendar by Patrick Wood</title>
		<link>http://accesstips.wordpress.com/2008/09/03/from-access-to-outlook-add-custom-data-to-your-outlook-calendar/#comment-1320</link>
		<dc:creator><![CDATA[Patrick Wood]]></dc:creator>
		<pubDate>Wed, 14 Sep 2011 14:17:27 +0000</pubDate>
		<guid isPermaLink="false">http://accesstips.wordpress.com/?p=102#comment-1320</guid>
		<description><![CDATA[Hi Jared,

The place you should ask these questions is on the Microsoft Forums:

Exchange Calendar
http://social.msdn.microsoft.com/Forums/en/os_exchangeprotocols/threads


Sharepoint Calendar
http://social.msdn.microsoft.com/Forums/en-US/sharepoint2010general/threads

http://social.msdn.microsoft.com/Forums/en-US/sharepointdevelopment/threads

Good Luck!]]></description>
		<content:encoded><![CDATA[<p>Hi Jared,</p>
<p>The place you should ask these questions is on the Microsoft Forums:</p>
<p>Exchange Calendar<br />
<a href="http://social.msdn.microsoft.com/Forums/en/os_exchangeprotocols/threads" rel="nofollow">http://social.msdn.microsoft.com/Forums/en/os_exchangeprotocols/threads</a></p>
<p>Sharepoint Calendar<br />
<a href="http://social.msdn.microsoft.com/Forums/en-US/sharepoint2010general/threads" rel="nofollow">http://social.msdn.microsoft.com/Forums/en-US/sharepoint2010general/threads</a></p>
<p><a href="http://social.msdn.microsoft.com/Forums/en-US/sharepointdevelopment/threads" rel="nofollow">http://social.msdn.microsoft.com/Forums/en-US/sharepointdevelopment/threads</a></p>
<p>Good Luck!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
