<?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 for OfficeDeveloper.NET</title>
	<atom:link href="http://officedeveloper.net/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://officedeveloper.net</link>
	<description></description>
	<lastBuildDate>Thu, 18 Feb 2010 13:33:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>Comment on Use VBA To Reset Task Due Dates in Outlook 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>Comment on Build a Collapsible Task Pane in Outlook &#8211; Part 1 by Ty Anderson</title>
		<link>http://officedeveloper.net/build-a-collapsible-task-pane-in-outlook-part-1/comment-page-1/#comment-4659</link>
		<dc:creator>Ty Anderson</dc:creator>
		<pubDate>Wed, 25 Nov 2009 03:12:57 +0000</pubDate>
		<guid isPermaLink="false">http://officedeveloper.net/build-a-xobni-like-task-pane-in-outlook-part-1/#comment-4659</guid>
		<description>Agreed about Xobni. I mentioned them only because I think they are familiar to Outlook users and developers. ADX&#039;s task pane features are much improved as you can place a task pane just about anywhere.  Take a look at this screen shot...http://www.add-in-express.com/add-in-net/ .   I question the usability of some of the locations but it is cool how they have made it easy. Over Thanksgiving, I&#039;ll get around to finishing a code sample and will write Part 3. I&#039;ll be sure to add some details about the various locations, etc.</description>
		<content:encoded><![CDATA[<p>Agreed about Xobni. I mentioned them only because I think they are familiar to Outlook users and developers. ADX&#8217;s task pane features are much improved as you can place a task pane just about anywhere.  Take a look at this screen shot&#8230;http://www.add-in-express.com/add-in-net/ .   I question the usability of some of the locations but it is cool how they have made it easy. Over Thanksgiving, I&#8217;ll get around to finishing a code sample and will write Part 3. I&#8217;ll be sure to add some details about the various locations, etc.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Build a Collapsible Task Pane in Outlook &#8211; Part 1 by Eric Legault</title>
		<link>http://officedeveloper.net/build-a-collapsible-task-pane-in-outlook-part-1/comment-page-1/#comment-4658</link>
		<dc:creator>Eric Legault</dc:creator>
		<pubDate>Wed, 25 Nov 2009 02:18:38 +0000</pubDate>
		<guid isPermaLink="false">http://officedeveloper.net/build-a-xobni-like-task-pane-in-outlook-part-1/#comment-4658</guid>
		<description>ADX is great, but Xobni isn&#039;t using it AFAIK.  They&#039;re using Windows subclassing and grafting their own UI onto the right hand side.  ADX&#039;s Task Pane implementation for the Explorer is only for the bottom half of the To-Do Bar.</description>
		<content:encoded><![CDATA[<p>ADX is great, but Xobni isn&#8217;t using it AFAIK.  They&#8217;re using Windows subclassing and grafting their own UI onto the right hand side.  ADX&#8217;s Task Pane implementation for the Explorer is only for the bottom half of the To-Do Bar.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Xobni Sets Its Sights on the Enterprise by Clive Wilson</title>
		<link>http://officedeveloper.net/xobni-sets-its-sights-on-the-enterprise/comment-page-1/#comment-4630</link>
		<dc:creator>Clive Wilson</dc:creator>
		<pubDate>Mon, 09 Nov 2009 11:12:08 +0000</pubDate>
		<guid isPermaLink="false">http://officedeveloper.net/xobni-sets-its-sights-on-the-enterprise/#comment-4630</guid>
		<description>Best is:

Lookeen HAS all enterprise features already: Group policies, Central indexing, share point support! Its administrators paradise!

C.</description>
		<content:encoded><![CDATA[<p>Best is:</p>
<p>Lookeen HAS all enterprise features already: Group policies, Central indexing, share point support! Its administrators paradise!</p>
<p>C.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Xobni Sets Its Sights on the Enterprise by 80Hunt</title>
		<link>http://officedeveloper.net/xobni-sets-its-sights-on-the-enterprise/comment-page-1/#comment-4613</link>
		<dc:creator>80Hunt</dc:creator>
		<pubDate>Wed, 04 Nov 2009 19:53:21 +0000</pubDate>
		<guid isPermaLink="false">http://officedeveloper.net/xobni-sets-its-sights-on-the-enterprise/#comment-4613</guid>
		<description>Hello,
I wanted to tell you, that searchtools for Outlook are essential for work. They save time and the users have much less stress. 

I&#039;m a Lookeen-user and I, of course, think that Lookeen is the best searchtool in this world :)

The main problem is that Microsoft has not been able to give Outlook a powerful search-feature. That&#039;s not a problem for users which get 1 or 2 mails per day, but if one uses Outlook for work, the e-mail-flood is a big problem. 
Thats the point and I want to thank the developers of such searchtools for making my everydays business much easier!

Here is the link for my favourite searchtool
http://www.lookeen.net (the best ;))</description>
		<content:encoded><![CDATA[<p>Hello,<br />
I wanted to tell you, that searchtools for Outlook are essential for work. They save time and the users have much less stress. </p>
<p>I&#8217;m a Lookeen-user and I, of course, think that Lookeen is the best searchtool in this world <img src='http://officedeveloper.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>The main problem is that Microsoft has not been able to give Outlook a powerful search-feature. That&#8217;s not a problem for users which get 1 or 2 mails per day, but if one uses Outlook for work, the e-mail-flood is a big problem.<br />
Thats the point and I want to thank the developers of such searchtools for making my everydays business much easier!</p>
<p>Here is the link for my favourite searchtool<br />
<a href="http://www.lookeen.net" rel="nofollow">http://www.lookeen.net</a> (the best <img src='http://officedeveloper.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> )</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Xobni Sets Its Sights on the Enterprise by Xobni Blog: Thanks, Enterprise!</title>
		<link>http://officedeveloper.net/xobni-sets-its-sights-on-the-enterprise/comment-page-1/#comment-4611</link>
		<dc:creator>Xobni Blog: Thanks, Enterprise!</dc:creator>
		<pubDate>Tue, 03 Nov 2009 19:32:29 +0000</pubDate>
		<guid isPermaLink="false">http://officedeveloper.net/xobni-sets-its-sights-on-the-enterprise/#comment-4611</guid>
		<description>[...] OfficeDeveloper.NET &#8211; Xobni Sets Its Sights on the Enterprise [...]</description>
		<content:encoded><![CDATA[<p>[...] OfficeDeveloper.NET &#8211; Xobni Sets Its Sights on the Enterprise [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Use VBA To Reset Task Due Dates in Outlook 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>Comment on Build a Collapsible Task Pane in Outlook &#8211; Part 1 by Shree</title>
		<link>http://officedeveloper.net/build-a-collapsible-task-pane-in-outlook-part-1/comment-page-1/#comment-4579</link>
		<dc:creator>Shree</dc:creator>
		<pubDate>Thu, 24 Sep 2009 13:21:03 +0000</pubDate>
		<guid isPermaLink="false">http://officedeveloper.net/build-a-xobni-like-task-pane-in-outlook-part-1/#comment-4579</guid>
		<description>I added the panel only to Explorer window intentionally. 
If you can tell me How to build a Xobni-like Task Pane in Outlook without using  Add-In-Express, that would be much more helpful.

Thank you...</description>
		<content:encoded><![CDATA[<p>I added the panel only to Explorer window intentionally.<br />
If you can tell me How to build a Xobni-like Task Pane in Outlook without using  Add-In-Express, that would be much more helpful.</p>
<p>Thank you&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Build a Collapsible Task Pane in Outlook &#8211; Part 1 by Ty Anderson</title>
		<link>http://officedeveloper.net/build-a-collapsible-task-pane-in-outlook-part-1/comment-page-1/#comment-4578</link>
		<dc:creator>Ty Anderson</dc:creator>
		<pubDate>Sat, 19 Sep 2009 19:46:26 +0000</pubDate>
		<guid isPermaLink="false">http://officedeveloper.net/build-a-xobni-like-task-pane-in-outlook-part-1/#comment-4578</guid>
		<description>Yep, it is easy to add a task pane to Outlook. What isn&#039;t so easy is managing your task pane instances so that they are visible in every Explorer or Inspector window (not to mention that each instance is destroyed when you close the Explorer and Inspectors). The code in your example will only display your task pane in the main Outlook Explorer ...which could be fine as long as the user doesn&#039;t open additional Explorers.

This link provide discusses the issue: http://msdn.microsoft.com/en-us/library/bb296010.aspx.</description>
		<content:encoded><![CDATA[<p>Yep, it is easy to add a task pane to Outlook. What isn&#8217;t so easy is managing your task pane instances so that they are visible in every Explorer or Inspector window (not to mention that each instance is destroyed when you close the Explorer and Inspectors). The code in your example will only display your task pane in the main Outlook Explorer &#8230;which could be fine as long as the user doesn&#8217;t open additional Explorers.</p>
<p>This link provide discusses the issue: <a href="http://msdn.microsoft.com/en-us/library/bb296010.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bb296010.aspx</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Build a Collapsible Task Pane in Outlook &#8211; Part 1 by Shree</title>
		<link>http://officedeveloper.net/build-a-collapsible-task-pane-in-outlook-part-1/comment-page-1/#comment-4577</link>
		<dc:creator>Shree</dc:creator>
		<pubDate>Sat, 19 Sep 2009 08:04:25 +0000</pubDate>
		<guid isPermaLink="false">http://officedeveloper.net/build-a-xobni-like-task-pane-in-outlook-part-1/#comment-4577</guid>
		<description>Adding a task pane is pretty much simple. Check it on my website.</description>
		<content:encoded><![CDATA[<p>Adding a task pane is pretty much simple. Check it on my website.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
