<?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/"
		>
<channel>
	<title>Comments on: Outlook Item to Task Macro</title>
	<atom:link href="http://www.johnplummer.com/tools/outlook-item-to-task-macro.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.johnplummer.com/tools/outlook-item-to-task-macro.html</link>
	<description>Stuff I want to remember</description>
	<lastBuildDate>Thu, 05 Aug 2010 17:39:35 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: John Plummer</title>
		<link>http://www.johnplummer.com/tools/outlook-item-to-task-macro.html/comment-page-1#comment-28281</link>
		<dc:creator>John Plummer</dc:creator>
		<pubDate>Wed, 02 Jun 2010 11:04:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.johnplummer.com/tools/outlook-item-to-task-macro.html#comment-28281</guid>
		<description>Hi Ronaque,
I am not using Outlook atm so can&#039;t walk you through it, but you should be able to paste the code into the macro editor. If you are unsure, check the Outlook help files. One thing to watch for is sometimes single and double quotes get changed for different characters.</description>
		<content:encoded><![CDATA[<p>Hi Ronaque,<br />
I am not using Outlook atm so can&#8217;t walk you through it, but you should be able to paste the code into the macro editor. If you are unsure, check the Outlook help files. One thing to watch for is sometimes single and double quotes get changed for different characters.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ronaque</title>
		<link>http://www.johnplummer.com/tools/outlook-item-to-task-macro.html/comment-page-1#comment-28274</link>
		<dc:creator>Ronaque</dc:creator>
		<pubDate>Wed, 02 Jun 2010 02:49:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.johnplummer.com/tools/outlook-item-to-task-macro.html#comment-28274</guid>
		<description>Hey i pasted the code in OL macro session but its not running as it should b.

can you plz forward the complete steps n procedure of the same on my mail ID:

Husain@systems-24.com.

Thnx in Advance
Ronn</description>
		<content:encoded><![CDATA[<p>Hey i pasted the code in OL macro session but its not running as it should b.</p>
<p>can you plz forward the complete steps n procedure of the same on my mail ID:</p>
<p><a href="mailto:Husain@systems-24.com">Husain@systems-24.com</a>.</p>
<p>Thnx in Advance<br />
Ronn</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ronaque</title>
		<link>http://www.johnplummer.com/tools/outlook-item-to-task-macro.html/comment-page-1#comment-28273</link>
		<dc:creator>Ronaque</dc:creator>
		<pubDate>Wed, 02 Jun 2010 01:42:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.johnplummer.com/tools/outlook-item-to-task-macro.html#comment-28273</guid>
		<description>Hello, 

Can u plz tell me where this code needs to be pasted and in which format it should be (either .bat or .vbs)........

Many Thnx.....</description>
		<content:encoded><![CDATA[<p>Hello, </p>
<p>Can u plz tell me where this code needs to be pasted and in which format it should be (either .bat or .vbs)&#8230;&#8230;..</p>
<p>Many Thnx&#8230;..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Plummer</title>
		<link>http://www.johnplummer.com/tools/outlook-item-to-task-macro.html/comment-page-1#comment-26782</link>
		<dc:creator>John Plummer</dc:creator>
		<pubDate>Thu, 25 Feb 2010 20:00:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.johnplummer.com/tools/outlook-item-to-task-macro.html#comment-26782</guid>
		<description>The From and Subject are already in the code. I imagine something along the lines of:
   olTask.Body = olTask.Body + &quot;From: &quot; + olItem.SenderName + vbNewLine
   olTask.Body = olTask.Body + &quot;Sent: &quot; + olItem.SentOn + vbNewLine
   olTask.Body = olTask.Body + &quot;Subject: &quot; + olItem.Subject + vbNewLine + vbNewLine
   olTask.Body = olTask.Body + olItem.Body

should work. (not tried it)</description>
		<content:encoded><![CDATA[<p>The From and Subject are already in the code. I imagine something along the lines of:<br />
   olTask.Body = olTask.Body + &#8220;From: &#8221; + olItem.SenderName + vbNewLine<br />
   olTask.Body = olTask.Body + &#8220;Sent: &#8221; + olItem.SentOn + vbNewLine<br />
   olTask.Body = olTask.Body + &#8220;Subject: &#8221; + olItem.Subject + vbNewLine + vbNewLine<br />
   olTask.Body = olTask.Body + olItem.Body</p>
<p>should work. (not tried it)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bernardo</title>
		<link>http://www.johnplummer.com/tools/outlook-item-to-task-macro.html/comment-page-1#comment-26781</link>
		<dc:creator>Bernardo</dc:creator>
		<pubDate>Thu, 25 Feb 2010 19:26:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.johnplummer.com/tools/outlook-item-to-task-macro.html#comment-26781</guid>
		<description>Hello, thanks for posting this.
The code works fine for me. However, I would like to include also the header of the message (from, sent,subject), as it would be included if I dragged and dropped on the task button. Do you have any ideas on how to do it?

Thanks!</description>
		<content:encoded><![CDATA[<p>Hello, thanks for posting this.<br />
The code works fine for me. However, I would like to include also the header of the message (from, sent,subject), as it would be included if I dragged and dropped on the task button. Do you have any ideas on how to do it?</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Simon</title>
		<link>http://www.johnplummer.com/tools/outlook-item-to-task-macro.html/comment-page-1#comment-24597</link>
		<dc:creator>Simon</dc:creator>
		<pubDate>Tue, 10 Nov 2009 16:38:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.johnplummer.com/tools/outlook-item-to-task-macro.html#comment-24597</guid>
		<description>Hi Charles, 

I cannot run the macro OL 2003.

Is it possible to used a adopted macro in the 2003 OL version as well? 

Thanks,</description>
		<content:encoded><![CDATA[<p>Hi Charles, </p>
<p>I cannot run the macro OL 2003.</p>
<p>Is it possible to used a adopted macro in the 2003 OL version as well? </p>
<p>Thanks,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Priit</title>
		<link>http://www.johnplummer.com/tools/outlook-item-to-task-macro.html/comment-page-1#comment-20329</link>
		<dc:creator>Priit</dc:creator>
		<pubDate>Tue, 02 Jun 2009 18:37:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.johnplummer.com/tools/outlook-item-to-task-macro.html#comment-20329</guid>
		<description>to Dwayne and John
you have to rewrite quotation marks and apostrophes - then it works without errors.</description>
		<content:encoded><![CDATA[<p>to Dwayne and John<br />
you have to rewrite quotation marks and apostrophes &#8211; then it works without errors.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: antonisx4</title>
		<link>http://www.johnplummer.com/tools/outlook-item-to-task-macro.html/comment-page-1#comment-19645</link>
		<dc:creator>antonisx4</dc:creator>
		<pubDate>Thu, 14 May 2009 08:33:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.johnplummer.com/tools/outlook-item-to-task-macro.html#comment-19645</guid>
		<description>I have copied the code for Outlook Item to Task Macro but it&#039;s giving me an error when I am trying to compile it and of course is not working. what can I do to fix it?</description>
		<content:encoded><![CDATA[<p>I have copied the code for Outlook Item to Task Macro but it&#8217;s giving me an error when I am trying to compile it and of course is not working. what can I do to fix it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Plummer</title>
		<link>http://www.johnplummer.com/tools/outlook-item-to-task-macro.html/comment-page-1#comment-12895</link>
		<dc:creator>John Plummer</dc:creator>
		<pubDate>Wed, 21 Jan 2009 11:11:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.johnplummer.com/tools/outlook-item-to-task-macro.html#comment-12895</guid>
		<description>Smaran,
It should bring up the task form. Are you sure it is running? You could try setting a breakpoint in the macro and see if that gets hit.

I have had something similar happen in the past and a reboot solved it so may be worth trying that first.</description>
		<content:encoded><![CDATA[<p>Smaran,<br />
It should bring up the task form. Are you sure it is running? You could try setting a breakpoint in the macro and see if that gets hit.</p>
<p>I have had something similar happen in the past and a reboot solved it so may be worth trying that first.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Smaran</title>
		<link>http://www.johnplummer.com/tools/outlook-item-to-task-macro.html/comment-page-1#comment-12329</link>
		<dc:creator>Smaran</dc:creator>
		<pubDate>Wed, 14 Jan 2009 22:20:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.johnplummer.com/tools/outlook-item-to-task-macro.html#comment-12329</guid>
		<description>I run your code. it is not giving any errors. But I cant see the tesks created in the Outlook task list.</description>
		<content:encoded><![CDATA[<p>I run your code. it is not giving any errors. But I cant see the tesks created in the Outlook task list.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
