<?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:series="http://unfoldingneurons.com/"
		>
<channel>
	<title>Comments on: Use VBA To Reset Task Due Dates in Outlook</title>
	<atom:link href="http://officedeveloper.net/use-vba-to-reset-task-due-dates-in-outlook/feed/" rel="self" type="application/rss+xml" />
	<link>http://officedeveloper.net/use-vba-to-reset-task-due-dates-in-outlook/</link>
	<description></description>
	<lastBuildDate>Mon, 12 Jul 2010 16:23:50 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: Marcus</title>
		<link>http://officedeveloper.net/use-vba-to-reset-task-due-dates-in-outlook/comment-page-1/#comment-4777</link>
		<dc:creator>Marcus</dc:creator>
		<pubDate>Thu, 18 Feb 2010 13:33:03 +0000</pubDate>
		<guid isPermaLink="false">http://officedeveloper.net/use-vba-to-reset-task-due-dates-in-outlook/#comment-4777</guid>
		<description>I am trying to get the Status property of an Outlook task using VBA but whenever I try to reference it I get the error object doesn&#039;t support this property or method.
&lt;code&gt;
    Set taskItems = itTasks.Items
    
    For Each task In taskItems
        count = count + 1
        
        statusText = &quot;&quot;
        With task
            creationTime = .creationTime . Works
            subject = .subject  &#039; Works
            statusText = .Status &#039; Does not work
        End With


I can get the subject and the creationTime but how do I get the status?
I can&#039;t seem to get it in the same manner.
I am using Microsoft Outlook 2003, (the mail box is on an Exchange Server 2007 server , same DOMAIN same LAN)&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>I am trying to get the Status property of an Outlook task using VBA but whenever I try to reference it I get the error object doesn&#8217;t support this property or method.<br />
<code><br />
    Set taskItems = itTasks.Items</p>
<p>    For Each task In taskItems<br />
        count = count + 1</p>
<p>        statusText = ""<br />
        With task<br />
            creationTime = .creationTime . Works<br />
            subject = .subject  ' Works<br />
            statusText = .Status ' Does not work<br />
        End With</p>
<p>I can get the subject and the creationTime but how do I get the status?<br />
I can't seem to get it in the same manner.<br />
I am using Microsoft Outlook 2003, (the mail box is on an Exchange Server 2007 server , same DOMAIN same LAN)</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bonnie</title>
		<link>http://officedeveloper.net/use-vba-to-reset-task-due-dates-in-outlook/comment-page-1/#comment-4585</link>
		<dc:creator>Bonnie</dc:creator>
		<pubDate>Fri, 09 Oct 2009 22:43:21 +0000</pubDate>
		<guid isPermaLink="false">http://officedeveloper.net/use-vba-to-reset-task-due-dates-in-outlook/#comment-4585</guid>
		<description>I want to use a vba script to change due date for selected tasks to a certain date, can someone tell me how to write that VBA?  Thanks.</description>
		<content:encoded><![CDATA[<p>I want to use a vba script to change due date for selected tasks to a certain date, can someone tell me how to write that VBA?  Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Danny</title>
		<link>http://officedeveloper.net/use-vba-to-reset-task-due-dates-in-outlook/comment-page-1/#comment-4460</link>
		<dc:creator>Danny</dc:creator>
		<pubDate>Sat, 27 Jun 2009 21:46:23 +0000</pubDate>
		<guid isPermaLink="false">http://officedeveloper.net/use-vba-to-reset-task-due-dates-in-outlook/#comment-4460</guid>
		<description>hey got it !
:-)

hadn&#039;t realised this, but task.save was out-commented !
I would have imagined that setting task.Duedate was enough, but this is VBA isn&#039;t :-)


thanks</description>
		<content:encoded><![CDATA[<p>hey got it ! <img src='http://officedeveloper.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>hadn&#8217;t realised this, but task.save was out-commented !<br />
I would have imagined that setting task.Duedate was enough, but this is VBA isn&#8217;t <img src='http://officedeveloper.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Danny</title>
		<link>http://officedeveloper.net/use-vba-to-reset-task-due-dates-in-outlook/comment-page-1/#comment-4459</link>
		<dc:creator>Danny</dc:creator>
		<pubDate>Sat, 27 Jun 2009 21:42:25 +0000</pubDate>
		<guid isPermaLink="false">http://officedeveloper.net/use-vba-to-reset-task-due-dates-in-outlook/#comment-4459</guid>
		<description>Thanks for responding -
it&#039;s the default folder actually I&#039;m using.
I tried the ns.PickFolder() method, but same result - code runs but nothing happens...

 Don&#039;t see it - so I&#039;m stuck here basically.
Would be lovely if this works</description>
		<content:encoded><![CDATA[<p>Thanks for responding -<br />
it&#8217;s the default folder actually I&#8217;m using.<br />
I tried the ns.PickFolder() method, but same result &#8211; code runs but nothing happens&#8230;</p>
<p> Don&#8217;t see it &#8211; so I&#8217;m stuck here basically.<br />
Would be lovely if this works</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ty</title>
		<link>http://officedeveloper.net/use-vba-to-reset-task-due-dates-in-outlook/comment-page-1/#comment-4443</link>
		<dc:creator>Ty</dc:creator>
		<pubDate>Tue, 23 Jun 2009 02:14:58 +0000</pubDate>
		<guid isPermaLink="false">http://officedeveloper.net/use-vba-to-reset-task-due-dates-in-outlook/#comment-4443</guid>
		<description>It is mapped to the default folder. If you want to check a different folder you need to grab a reference to it using the Namespace object (ns in the code).

Maybe call the PickFolder method and ask the user which folder to work against. Something like:

Set fld = ns.PickFolder()

I use the today() function because I am an old VBA developer and I like the today() function. It works.</description>
		<content:encoded><![CDATA[<p>It is mapped to the default folder. If you want to check a different folder you need to grab a reference to it using the Namespace object (ns in the code).</p>
<p>Maybe call the PickFolder method and ask the user which folder to work against. Something like:</p>
<p>Set fld = ns.PickFolder()</p>
<p>I use the today() function because I am an old VBA developer and I like the today() function. It works.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Danny Puype</title>
		<link>http://officedeveloper.net/use-vba-to-reset-task-due-dates-in-outlook/comment-page-1/#comment-4442</link>
		<dc:creator>Danny Puype</dc:creator>
		<pubDate>Sun, 21 Jun 2009 08:06:20 +0000</pubDate>
		<guid isPermaLink="false">http://officedeveloper.net/use-vba-to-reset-task-due-dates-in-outlook/#comment-4442</guid>
		<description>This is nice -
however I tried it out, but can&#039;t get it to work in my Outlook 2007 - ...
tried a bit of everything, but don&#039;t see it - dommage :-)

It seems the macro rolls through, but there&#039;s no records in the recordset...
wonder whether it could be linked to the default folder?
I don&#039;t get an error message, just goes through it doing nothing.
Tried to fiddle around with different settings for rest var with different fields too, but no luck -

Also I wondered why you use the today() function, shouldn&#039;t that be date()?

Any suggestions much welcomed of course
rgds</description>
		<content:encoded><![CDATA[<p>This is nice -<br />
however I tried it out, but can&#8217;t get it to work in my Outlook 2007 &#8211; &#8230;<br />
tried a bit of everything, but don&#8217;t see it &#8211; dommage <img src='http://officedeveloper.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>It seems the macro rolls through, but there&#8217;s no records in the recordset&#8230;<br />
wonder whether it could be linked to the default folder?<br />
I don&#8217;t get an error message, just goes through it doing nothing.<br />
Tried to fiddle around with different settings for rest var with different fields too, but no luck -</p>
<p>Also I wondered why you use the today() function, shouldn&#8217;t that be date()?</p>
<p>Any suggestions much welcomed of course<br />
rgds</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ty</title>
		<link>http://officedeveloper.net/use-vba-to-reset-task-due-dates-in-outlook/comment-page-1/#comment-2904</link>
		<dc:creator>Ty</dc:creator>
		<pubDate>Sun, 03 May 2009 03:54:06 +0000</pubDate>
		<guid isPermaLink="false">http://officedeveloper.net/use-vba-to-reset-task-due-dates-in-outlook/#comment-2904</guid>
		<description>it&#039;s another filter that isn&#039;t used in this code sample. It can be used in  Items.Restrict(...) . I believe it will restrict the items collection to the same filter (&lt;&gt; &#039;Completed&#039;). The difference is the unused filter string references the MAPI folder id and is a bit of a pain to figure out.</description>
		<content:encoded><![CDATA[<p>it&#8217;s another filter that isn&#8217;t used in this code sample. It can be used in  Items.Restrict(&#8230;) . I believe it will restrict the items collection to the same filter (<> &#8216;Completed&#8217;). The difference is the unused filter string references the MAPI folder id and is a bit of a pain to figure out.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark</title>
		<link>http://officedeveloper.net/use-vba-to-reset-task-due-dates-in-outlook/comment-page-1/#comment-2043</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Fri, 24 Apr 2009 01:26:09 +0000</pubDate>
		<guid isPermaLink="false">http://officedeveloper.net/use-vba-to-reset-task-due-dates-in-outlook/#comment-2043</guid>
		<description>What was the purpose of creating and populating the filterSQL string? It doesn&#039;t appear to get used - Am I missing something?</description>
		<content:encoded><![CDATA[<p>What was the purpose of creating and populating the filterSQL string? It doesn&#8217;t appear to get used &#8211; Am I missing something?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Korayem</title>
		<link>http://officedeveloper.net/use-vba-to-reset-task-due-dates-in-outlook/comment-page-1/#comment-459</link>
		<dc:creator>Korayem</dc:creator>
		<pubDate>Wed, 11 Feb 2009 10:39:34 +0000</pubDate>
		<guid isPermaLink="false">http://officedeveloper.net/use-vba-to-reset-task-due-dates-in-outlook/#comment-459</guid>
		<description>Awesome. Just showed this to my boss and he loves it. I even assigned a shortcut for this macro...</description>
		<content:encoded><![CDATA[<p>Awesome. Just showed this to my boss and he loves it. I even assigned a shortcut for this macro&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
