<?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 on: Lean GTD 2007</title>
	<atom:link href="http://blog.drakengren.com/lean-gtd-2007/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.drakengren.com</link>
	<description>The place for me to turn abstract stuff into concrete (!).</description>
	<lastBuildDate>Mon, 16 May 2011 13:06:39 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Thomas Drakengren</title>
		<link>http://blog.drakengren.com/lean-gtd-2007/#comment-418</link>
		<dc:creator><![CDATA[Thomas Drakengren]]></dc:creator>
		<pubDate>Mon, 16 May 2011 13:06:39 +0000</pubDate>
		<guid isPermaLink="false">http://blog.drakengren.com/?page_id=178#comment-418</guid>
		<description><![CDATA[OK, done! :-)]]></description>
		<content:encoded><![CDATA[<p>OK, done! <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ideasmiths</title>
		<link>http://blog.drakengren.com/lean-gtd-2007/#comment-417</link>
		<dc:creator><![CDATA[ideasmiths]]></dc:creator>
		<pubDate>Mon, 16 May 2011 13:00:35 +0000</pubDate>
		<guid isPermaLink="false">http://blog.drakengren.com/?page_id=178#comment-417</guid>
		<description><![CDATA[Outlook2010 changed so much compared to outlook 2002/2007 that I had used. The commandbar that you used is no longer supported after 2010 so i guess the accelerator buttons went with it. 2 weeks ago, Microsoft launched the Outlook365 (online cloud based stuff) which is in beta stage and free for all to use at the moment. I am guessing Outlook2010 days are numbered too ....]]></description>
		<content:encoded><![CDATA[<p>Outlook2010 changed so much compared to outlook 2002/2007 that I had used. The commandbar that you used is no longer supported after 2010 so i guess the accelerator buttons went with it. 2 weeks ago, Microsoft launched the Outlook365 (online cloud based stuff) which is in beta stage and free for all to use at the moment. I am guessing Outlook2010 days are numbered too &#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ideasmiths</title>
		<link>http://blog.drakengren.com/lean-gtd-2007/#comment-416</link>
		<dc:creator><![CDATA[ideasmiths]]></dc:creator>
		<pubDate>Mon, 16 May 2011 12:44:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.drakengren.com/?page_id=178#comment-416</guid>
		<description><![CDATA[Sorry thomas my fault, i missed copying two lines of code. Please delete the earlier commend. This commend contains the correct codes

I have completed my own routines and got some time to install the LeanGTD2007. I have made some small changes to enable it to work for 2010.
The issue was the obscure bug attachment.add method which works in 2007 but broke in 2010. This bug went undocumented and was supposed to be fixed in outlook service pack 1 (but it’s still there). I had to dig this information up after several deep google searches.

Anyway, 2010 users should just install the downloaded LeanGTD2007.bas, ignore the message during installation that this will only works on 2007. After installation, you will see in the addin tab the 4 commands buttons. Click on each of them in turn and when it broke, click debug and add in these code. For example, the Act on item command button fails at this line newTask.Attachments.Add selectedItem
Replace that line with these codes. What it does is to save the item you selected onto the system temporary folder, then allows itself to be added to the new task. (jargon for programmers)…..The Microsoft bug does not allow outlook items to be added correctly, even when the method shows no bug

        Dim strTempPath  As String
        Dim strPath As String
        &#039;Use the user computer /TEMP location to store attachments found in mails
        strTempPath = Environ(&quot;TEMP&quot;)
        strPath = strTempPath &amp; &quot;\testmsg.msg&quot;
        selectedItem.SaveAs strPath, olMSG
        newTask.Attachments.Add strPath, Outlook.olEmbeddeditem, 1, selectedItem.subject
                         
        &#039;newTask.Attachments.Add selectedItem

Take note, if you copy and paste the codes above, some browsers will change the single quote ‘ and doublequotes ” to something else and cause it to fail in your outlook debug, just retype it (the correct single and double quote is on the left of the return key)

Repeat the same process with the command button schedule Item with the replacement codes below

       Dim strTempPath  As String
        Dim strPath As String
        &#039;Use the user computer /TEMP location to store attachments found in mails
        strTempPath = Environ(&quot;TEMP&quot;)
        strPath = strTempPath &amp; &quot;\testmsg.msg&quot;
        selectedItem.SaveAs strPath, olMSG
        
        newAppointment.Attachments.Add strPath, Outlook.olEmbeddeditem, 1, selectedItem.subject]]></description>
		<content:encoded><![CDATA[<p>Sorry thomas my fault, i missed copying two lines of code. Please delete the earlier commend. This commend contains the correct codes</p>
<p>I have completed my own routines and got some time to install the LeanGTD2007. I have made some small changes to enable it to work for 2010.<br />
The issue was the obscure bug attachment.add method which works in 2007 but broke in 2010. This bug went undocumented and was supposed to be fixed in outlook service pack 1 (but it’s still there). I had to dig this information up after several deep google searches.</p>
<p>Anyway, 2010 users should just install the downloaded LeanGTD2007.bas, ignore the message during installation that this will only works on 2007. After installation, you will see in the addin tab the 4 commands buttons. Click on each of them in turn and when it broke, click debug and add in these code. For example, the Act on item command button fails at this line newTask.Attachments.Add selectedItem<br />
Replace that line with these codes. What it does is to save the item you selected onto the system temporary folder, then allows itself to be added to the new task. (jargon for programmers)…..The Microsoft bug does not allow outlook items to be added correctly, even when the method shows no bug</p>
<p>        Dim strTempPath  As String<br />
        Dim strPath As String<br />
        &#8216;Use the user computer /TEMP location to store attachments found in mails<br />
        strTempPath = Environ(&#8220;TEMP&#8221;)<br />
        strPath = strTempPath &amp; &#8220;\testmsg.msg&#8221;<br />
        selectedItem.SaveAs strPath, olMSG<br />
        newTask.Attachments.Add strPath, Outlook.olEmbeddeditem, 1, selectedItem.subject</p>
<p>        &#8216;newTask.Attachments.Add selectedItem</p>
<p>Take note, if you copy and paste the codes above, some browsers will change the single quote ‘ and doublequotes ” to something else and cause it to fail in your outlook debug, just retype it (the correct single and double quote is on the left of the return key)</p>
<p>Repeat the same process with the command button schedule Item with the replacement codes below</p>
<p>       Dim strTempPath  As String<br />
        Dim strPath As String<br />
        &#8216;Use the user computer /TEMP location to store attachments found in mails<br />
        strTempPath = Environ(&#8220;TEMP&#8221;)<br />
        strPath = strTempPath &amp; &#8220;\testmsg.msg&#8221;<br />
        selectedItem.SaveAs strPath, olMSG</p>
<p>        newAppointment.Attachments.Add strPath, Outlook.olEmbeddeditem, 1, selectedItem.subject</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thomas Drakengren</title>
		<link>http://blog.drakengren.com/lean-gtd-2007/#comment-415</link>
		<dc:creator><![CDATA[Thomas Drakengren]]></dc:creator>
		<pubDate>Mon, 16 May 2011 12:35:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.drakengren.com/?page_id=178#comment-415</guid>
		<description><![CDATA[Splendid, thanks a lot, that wasn&#039;t easy to realize! I&#039;ll take the time to integrate this into the macros as soon as possible. I need to look at the accelerator keys too; they don&#039;t seem to work either. Probably I&#039;m using an outdated method for those...]]></description>
		<content:encoded><![CDATA[<p>Splendid, thanks a lot, that wasn&#8217;t easy to realize! I&#8217;ll take the time to integrate this into the macros as soon as possible. I need to look at the accelerator keys too; they don&#8217;t seem to work either. Probably I&#8217;m using an outdated method for those&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ideasmiths</title>
		<link>http://blog.drakengren.com/lean-gtd-2007/#comment-414</link>
		<dc:creator><![CDATA[ideasmiths]]></dc:creator>
		<pubDate>Mon, 16 May 2011 12:11:26 +0000</pubDate>
		<guid isPermaLink="false">http://blog.drakengren.com/?page_id=178#comment-414</guid>
		<description><![CDATA[&lt;em&gt;[Deleted comment. Updated comment below! /Thomas]&lt;/em&gt;]]></description>
		<content:encoded><![CDATA[<p><em>[Deleted comment. Updated comment below! /Thomas]</em></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lean GTD 2007 for Outlook 2010 &#171; Conceptual Integrity</title>
		<link>http://blog.drakengren.com/lean-gtd-2007/#comment-224</link>
		<dc:creator><![CDATA[Lean GTD 2007 for Outlook 2010 &#171; Conceptual Integrity]]></dc:creator>
		<pubDate>Sun, 20 Jun 2010 07:28:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.drakengren.com/?page_id=178#comment-224</guid>
		<description><![CDATA[[...] Outlook&#160;2010  Posted on June 20, 2010 by Thomas Drakengren   Reader bgbuffalo was so kind to point out that my macro package for simplifying GTD with Outlook 2007, Lean GTD 2007, didn&#8217;t work with [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Outlook&nbsp;2010  Posted on June 20, 2010 by Thomas Drakengren   Reader bgbuffalo was so kind to point out that my macro package for simplifying GTD with Outlook 2007, Lean GTD 2007, didn&#8217;t work with [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bgbuffalo</title>
		<link>http://blog.drakengren.com/lean-gtd-2007/#comment-223</link>
		<dc:creator><![CDATA[bgbuffalo]]></dc:creator>
		<pubDate>Fri, 18 Jun 2010 18:47:19 +0000</pubDate>
		<guid isPermaLink="false">http://blog.drakengren.com/?page_id=178#comment-223</guid>
		<description><![CDATA[Sure, I appreciate what you have done and miss having a working macro.]]></description>
		<content:encoded><![CDATA[<p>Sure, I appreciate what you have done and miss having a working macro.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thomas Drakengren</title>
		<link>http://blog.drakengren.com/lean-gtd-2007/#comment-222</link>
		<dc:creator><![CDATA[Thomas Drakengren]]></dc:creator>
		<pubDate>Fri, 18 Jun 2010 06:14:53 +0000</pubDate>
		<guid isPermaLink="false">http://blog.drakengren.com/?page_id=178#comment-222</guid>
		<description><![CDATA[Thanks for reporting this. I haven&#039;t yet upgraded to Outlook 2010, so probably some changes are needed. I&#039;ll look into this to see if I can make some changes based upon the documentation only. Perhaps I can send my attempts to you for testing?]]></description>
		<content:encoded><![CDATA[<p>Thanks for reporting this. I haven&#8217;t yet upgraded to Outlook 2010, so probably some changes are needed. I&#8217;ll look into this to see if I can make some changes based upon the documentation only. Perhaps I can send my attempts to you for testing?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bgbuffalo</title>
		<link>http://blog.drakengren.com/lean-gtd-2007/#comment-221</link>
		<dc:creator><![CDATA[bgbuffalo]]></dc:creator>
		<pubDate>Thu, 17 Jun 2010 20:36:53 +0000</pubDate>
		<guid isPermaLink="false">http://blog.drakengren.com/?page_id=178#comment-221</guid>
		<description><![CDATA[Just upgraded to Outlook 2010. The macro installs and the 4 buttons show up on the &quot;add-ins&quot; tab of the ribbon. Two of them, &quot;next action&quot; and &quot;all day&quot; open up a new task or appointment, but the text of the email are not carried into the new windows. &quot;Act on item&quot; and &quot;schedule&quot; bring up error message &quot;8004010f object could not be found&quot;.

Clicking on debug brings you to  &quot;newTask.Attachments.Add selectedItem&quot; and &quot; newAppointment.Attachments.Add selectedItem&quot; respectively. Unfortunately my knowledge of VB is nil, hopefully it is a simple fix. I had been using the macro regularly.]]></description>
		<content:encoded><![CDATA[<p>Just upgraded to Outlook 2010. The macro installs and the 4 buttons show up on the &#8220;add-ins&#8221; tab of the ribbon. Two of them, &#8220;next action&#8221; and &#8220;all day&#8221; open up a new task or appointment, but the text of the email are not carried into the new windows. &#8220;Act on item&#8221; and &#8220;schedule&#8221; bring up error message &#8220;8004010f object could not be found&#8221;.</p>
<p>Clicking on debug brings you to  &#8220;newTask.Attachments.Add selectedItem&#8221; and &#8221; newAppointment.Attachments.Add selectedItem&#8221; respectively. Unfortunately my knowledge of VB is nil, hopefully it is a simple fix. I had been using the macro regularly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thomas Drakengren</title>
		<link>http://blog.drakengren.com/lean-gtd-2007/#comment-216</link>
		<dc:creator><![CDATA[Thomas Drakengren]]></dc:creator>
		<pubDate>Tue, 25 May 2010 12:12:20 +0000</pubDate>
		<guid isPermaLink="false">http://blog.drakengren.com/?page_id=178#comment-216</guid>
		<description><![CDATA[Thanks, I&#039;m happy that you like it! :-)]]></description>
		<content:encoded><![CDATA[<p>Thanks, I&#8217;m happy that you like it! <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>

