<?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 2003 is great, but&#8230;</title>
	<atom:link href="http://www.ageektrapped.com/blog/outlook-2003-is-great-but/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ageektrapped.com/blog/outlook-2003-is-great-but/</link>
	<description>Trapped online since 2004</description>
	<lastBuildDate>Wed, 11 Jan 2012 10:22:59 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Mark</title>
		<link>http://www.ageektrapped.com/blog/outlook-2003-is-great-but/comment-page-1/#comment-6</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Mon, 25 Apr 2005 21:14:00 +0000</pubDate>
		<guid isPermaLink="false">http://69.42.58.100/~jaso3118/blog/outlook-2003-is-great-but/#comment-6</guid>
		<description>I found the following macro code for older versions of Outlook.  It doesn&#039;t seem to be wokring with Outlook 2003.  Any help would be great!
&lt;br&gt;
&lt;br&gt;Sub KillSpam()
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;    Dim myOlApp As Outlook.Application
&lt;br&gt;    Dim myFolder As Outlook.MAPIFolder
&lt;br&gt;    Dim myItem As Outlook.MailItem
&lt;br&gt;    Dim ctl As CommandBarControl &#039; Junk E-mail flyout menu
&lt;br&gt;    Dim subctl As CommandBarControl &#039; Add to Junk Senders list menu Item
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;    Dim i As Integer
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;    Set myOlApp = CreateObject(&quot;Outlook.Application&quot;)
&lt;br&gt;    Set myFolder = myOlApp.ActiveExplorer.CurrentFolder
&lt;br&gt;    iCount = myOlApp.ActiveExplorer.Selection.Count
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;    For i = 1 To iCount
&lt;br&gt;        Set myItem = myOlApp.ActiveExplorer.Selection.Item(1)
&lt;br&gt;        Set ctl = myOlApp.ActiveExplorer.CommandBars.FindControl(Type:=msoControlPopup, ID:=31126)
&lt;br&gt;        Set subctl = ctl.CommandBar.Controls(1)
&lt;br&gt;        MsgBox subctl.Caption
&lt;br&gt;        subctl.Execute
&lt;br&gt;        myItem.UnRead = False
&lt;br&gt;        &#039;myItem.Delete
&lt;br&gt;        DoEvents
&lt;br&gt;    Next i
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;    MsgBox i - 1 &amp; &quot; messages deleted as SPAM.&quot;, vbOKOnly, &quot;SPAM Killed&quot;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;End Sub
&lt;br&gt;</description>
		<content:encoded><![CDATA[<p>I found the following macro code for older versions of Outlook.  It doesn&#8217;t seem to be wokring with Outlook 2003.  Any help would be great!</p>
<p>Sub KillSpam()</p>
<p>    Dim myOlApp As Outlook.Application<br />
<br />    Dim myFolder As Outlook.MAPIFolder<br />
<br />    Dim myItem As Outlook.MailItem<br />
<br />    Dim ctl As CommandBarControl &#8216; Junk E-mail flyout menu<br />
<br />    Dim subctl As CommandBarControl &#8216; Add to Junk Senders list menu Item</p>
<p>    Dim i As Integer</p>
<p>    Set myOlApp = CreateObject(&quot;Outlook.Application&quot;)<br />
<br />    Set myFolder = myOlApp.ActiveExplorer.CurrentFolder<br />
<br />    iCount = myOlApp.ActiveExplorer.Selection.Count</p>
<p>    For i = 1 To iCount<br />
<br />        Set myItem = myOlApp.ActiveExplorer.Selection.Item(1)<br />
<br />        Set ctl = myOlApp.ActiveExplorer.CommandBars.FindControl(Type:=msoControlPopup, ID:=31126)<br />
<br />        Set subctl = ctl.CommandBar.Controls(1)<br />
<br />        MsgBox subctl.Caption<br />
<br />        subctl.Execute<br />
<br />        myItem.UnRead = False<br />
<br />        &#8216;myItem.Delete<br />
<br />        DoEvents<br />
<br />    Next i</p>
<p>    MsgBox i &#8211; 1 &amp; &quot; messages deleted as SPAM.&quot;, vbOKOnly, &quot;SPAM Killed&quot;</p>
<p>End Sub<br /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Flasko</title>
		<link>http://www.ageektrapped.com/blog/outlook-2003-is-great-but/comment-page-1/#comment-5</link>
		<dc:creator>Mike Flasko</dc:creator>
		<pubDate>Tue, 18 May 2004 07:29:00 +0000</pubDate>
		<guid isPermaLink="false">http://69.42.58.100/~jaso3118/blog/outlook-2003-is-great-but/#comment-5</guid>
		<description>My bad...I thought you were bitching about the default spam filtering.  My point was to supplement that with your own rules.  Appears we were both getting at the same thing :)</description>
		<content:encoded><![CDATA[<p>My bad&#8230;I thought you were bitching about the default spam filtering.  My point was to supplement that with your own rules.  Appears we were both getting at the same thing <img src='http://www.ageektrapped.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason Kemp</title>
		<link>http://www.ageektrapped.com/blog/outlook-2003-is-great-but/comment-page-1/#comment-4</link>
		<dc:creator>Jason Kemp</dc:creator>
		<pubDate>Mon, 17 May 2004 18:01:00 +0000</pubDate>
		<guid isPermaLink="false">http://69.42.58.100/~jaso3118/blog/outlook-2003-is-great-but/#comment-4</guid>
		<description>Mike,
&lt;br&gt;
&lt;br&gt;That&#039;s what the Junk Mail &gt; Add To Blocked Sender&#039;s List does. If I don&#039;t know whom to block, I can&#039;t make a rule. What I want is something that will do &quot;Add To Blocked Sender&#039;s List&quot; for multiple emails at once.
&lt;br&gt;
&lt;br&gt;Re-reading my post, I didn&#039;t make that very clear. Forgive me, I&#039;m new to this blogging thing :).
&lt;br&gt;
&lt;br&gt;</description>
		<content:encoded><![CDATA[<p>Mike,</p>
<p>That&#8217;s what the Junk Mail &gt; Add To Blocked Sender&#8217;s List does. If I don&#8217;t know whom to block, I can&#8217;t make a rule. What I want is something that will do &quot;Add To Blocked Sender&#8217;s List&quot; for multiple emails at once.</p>
<p>Re-reading my post, I didn&#8217;t make that very clear. Forgive me, I&#8217;m new to this blogging thing <img src='http://www.ageektrapped.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Flasko</title>
		<link>http://www.ageektrapped.com/blog/outlook-2003-is-great-but/comment-page-1/#comment-3</link>
		<dc:creator>Mike Flasko</dc:creator>
		<pubDate>Mon, 17 May 2004 07:37:00 +0000</pubDate>
		<guid isPermaLink="false">http://69.42.58.100/~jaso3118/blog/outlook-2003-is-great-but/#comment-3</guid>
		<description>My boss actually sent an email asking about a similar type feature to the outlook dev team last week.... how ironic.  My suggestion to you is to use the &quot;rules&quot; feature instead of deleting one by one.  If you know it is junk setup a rule to automatically delete it for....this way each message only has to be handled once.</description>
		<content:encoded><![CDATA[<p>My boss actually sent an email asking about a similar type feature to the outlook dev team last week&#8230;. how ironic.  My suggestion to you is to use the &quot;rules&quot; feature instead of deleting one by one.  If you know it is junk setup a rule to automatically delete it for&#8230;.this way each message only has to be handled once.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

