<?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: Handy Outlook Attachment Reminder Macro</title>
	<atom:link href="http://manage-this.com/handy-outlook-attachment-reminder-macro/feed/" rel="self" type="application/rss+xml" />
	<link>http://manage-this.com/handy-outlook-attachment-reminder-macro/</link>
	<description></description>
	<lastBuildDate>Sat, 31 Jul 2010 08:57:12 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: carl</title>
		<link>http://manage-this.com/handy-outlook-attachment-reminder-macro/comment-page-1/#comment-12092</link>
		<dc:creator>carl</dc:creator>
		<pubDate>Wed, 05 May 2010 03:28:55 +0000</pubDate>
		<guid isPermaLink="false">http://manage-this.com/handy-outlook-attachment-reminder-macro/#comment-12092</guid>
		<description>Hi Harry - Any field that can be accessed by VBA can be checked.  Once you find the field your want to check, you can re-use the Subject line check code (Check #1) to check for a blank From field.  I think the field you want to check is Item.SenderEmailAddress or Item.SenderName, but that&#039;s a guess on my part ;-)

-Carl</description>
		<content:encoded><![CDATA[<p>Hi Harry &#8211; Any field that can be accessed by VBA can be checked.  Once you find the field your want to check, you can re-use the Subject line check code (Check #1) to check for a blank From field.  I think the field you want to check is Item.SenderEmailAddress or Item.SenderName, but that&#8217;s a guess on my part <img src='http://manage-this.com/wp/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>-Carl</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Harry Burrows</title>
		<link>http://manage-this.com/handy-outlook-attachment-reminder-macro/comment-page-1/#comment-12011</link>
		<dc:creator>Harry Burrows</dc:creator>
		<pubDate>Mon, 26 Apr 2010 13:41:07 +0000</pubDate>
		<guid isPermaLink="false">http://manage-this.com/handy-outlook-attachment-reminder-macro/#comment-12011</guid>
		<description>Hi Carl,

I use my outlook 2007 for work, uni and personal email and sometimes forget to change the &#039;from&#039; line of my emails. Could you please give advice on how to write a macro so it will remind me each time I want to send an email as to whether I want to put one in? I&#039;ve tried editing existing code like yours above, but can&#039;t get it to work. (I&#039;m not that great at programming) Any help would be gratefully received, thanks so much.

Harry</description>
		<content:encoded><![CDATA[<p>Hi Carl,</p>
<p>I use my outlook 2007 for work, uni and personal email and sometimes forget to change the &#8216;from&#8217; line of my emails. Could you please give advice on how to write a macro so it will remind me each time I want to send an email as to whether I want to put one in? I&#8217;ve tried editing existing code like yours above, but can&#8217;t get it to work. (I&#8217;m not that great at programming) Any help would be gratefully received, thanks so much.</p>
<p>Harry</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: carl</title>
		<link>http://manage-this.com/handy-outlook-attachment-reminder-macro/comment-page-1/#comment-11417</link>
		<dc:creator>carl</dc:creator>
		<pubDate>Thu, 11 Mar 2010 04:24:50 +0000</pubDate>
		<guid isPermaLink="false">http://manage-this.com/handy-outlook-attachment-reminder-macro/#comment-11417</guid>
		<description>Hi Amit -

First of all, if there are individual entries in your auto-complete addresses that you don&#039;t want, you can remove them.  Start typing in the &quot;To&quot; field until the unwanted name shows up.  Then, highlight it (without clicking) and press the delete key.

You can also check domains for each outgoing message by modifying the macro.  For example, to display the domains you could add code like:

&lt;code&gt;If Item.Class = olMail Then
    MsgBox Item.To &amp; vbCrLf &amp; Item.CC
End If&lt;/code&gt;

You can use the InStr command to check those fields for certain strings and trigger the popup based on that.

Happy coding!

-Carl</description>
		<content:encoded><![CDATA[<p>Hi Amit -</p>
<p>First of all, if there are individual entries in your auto-complete addresses that you don&#8217;t want, you can remove them.  Start typing in the &#8220;To&#8221; field until the unwanted name shows up.  Then, highlight it (without clicking) and press the delete key.</p>
<p>You can also check domains for each outgoing message by modifying the macro.  For example, to display the domains you could add code like:</p>
<p><code>If Item.Class = olMail Then<br />
    MsgBox Item.To &#038; vbCrLf &#038; Item.CC<br />
End If</code></p>
<p>You can use the InStr command to check those fields for certain strings and trigger the popup based on that.</p>
<p>Happy coding!</p>
<p>-Carl</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Amit</title>
		<link>http://manage-this.com/handy-outlook-attachment-reminder-macro/comment-page-1/#comment-11402</link>
		<dc:creator>Amit</dc:creator>
		<pubDate>Tue, 09 Mar 2010 15:04:10 +0000</pubDate>
		<guid isPermaLink="false">http://manage-this.com/handy-outlook-attachment-reminder-macro/#comment-11402</guid>
		<description>Hi Carl,

Great Macro thanks.

Can you propose a way to help with the following 
Due to the Outlook Auto Complete feature, I sometimes send an email to the wrong contact :-(
And It can be very problematic at times...

I would like to write a macro that will do:
pop up a warning with a list of domains that the mail is sent to

or check that the mail is sent to an external domain (not my company domain name)

Thanks,
Amit</description>
		<content:encoded><![CDATA[<p>Hi Carl,</p>
<p>Great Macro thanks.</p>
<p>Can you propose a way to help with the following<br />
Due to the Outlook Auto Complete feature, I sometimes send an email to the wrong contact <img src='http://manage-this.com/wp/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /><br />
And It can be very problematic at times&#8230;</p>
<p>I would like to write a macro that will do:<br />
pop up a warning with a list of domains that the mail is sent to</p>
<p>or check that the mail is sent to an external domain (not my company domain name)</p>
<p>Thanks,<br />
Amit</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: carl</title>
		<link>http://manage-this.com/handy-outlook-attachment-reminder-macro/comment-page-1/#comment-11277</link>
		<dc:creator>carl</dc:creator>
		<pubDate>Wed, 24 Feb 2010 05:00:20 +0000</pubDate>
		<guid isPermaLink="false">http://manage-this.com/handy-outlook-attachment-reminder-macro/#comment-11277</guid>
		<description>Hi Rachel - So far, the most common issue for people has been their macro security level.  If you&#039;ve already ruled that out, I had a few other things to try in my &lt;a href=&quot;http://manage-this.com/handy-outlook-attachment-reminder-macro/#comment-7293&quot; rel=&quot;nofollow&quot;&gt; comments from May 21st above&lt;/a&gt;.  Basically, see if you can get *any* macro to work, starting with a simple message box, then move up from there.  Good luck!

-Carl</description>
		<content:encoded><![CDATA[<p>Hi Rachel &#8211; So far, the most common issue for people has been their macro security level.  If you&#8217;ve already ruled that out, I had a few other things to try in my <a href="http://manage-this.com/handy-outlook-attachment-reminder-macro/#comment-7293"> comments from May 21st above</a>.  Basically, see if you can get *any* macro to work, starting with a simple message box, then move up from there.  Good luck!</p>
<p>-Carl</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rachel</title>
		<link>http://manage-this.com/handy-outlook-attachment-reminder-macro/comment-page-1/#comment-11050</link>
		<dc:creator>Rachel</dc:creator>
		<pubDate>Fri, 19 Feb 2010 16:45:21 +0000</pubDate>
		<guid isPermaLink="false">http://manage-this.com/handy-outlook-attachment-reminder-macro/#comment-11050</guid>
		<description>Hi Carl!

Thanks for a great code.  This was working on my Outlook for a few days, and then all the sudden stopped working.  Nothing pops up at all.  I&#039;ve brought my security level down to Low, tried deleting and re-programming the macro, and nothing seems to work.  Any words of wisdom? I have Outlook 2003. 

Thanks!</description>
		<content:encoded><![CDATA[<p>Hi Carl!</p>
<p>Thanks for a great code.  This was working on my Outlook for a few days, and then all the sudden stopped working.  Nothing pops up at all.  I&#8217;ve brought my security level down to Low, tried deleting and re-programming the macro, and nothing seems to work.  Any words of wisdom? I have Outlook 2003. </p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: carl</title>
		<link>http://manage-this.com/handy-outlook-attachment-reminder-macro/comment-page-1/#comment-9797</link>
		<dc:creator>carl</dc:creator>
		<pubDate>Fri, 13 Nov 2009 03:28:44 +0000</pubDate>
		<guid isPermaLink="false">http://manage-this.com/handy-outlook-attachment-reminder-macro/#comment-9797</guid>
		<description>Michiel - Assuming the signing of the macro is working, it sounds like it might be an issue with your security level settings.  See the comments above on 21-May-09 and 22-May-09.  Also see discussion on signing in comments from June 10th &amp; June 14th above.

-Carl</description>
		<content:encoded><![CDATA[<p>Michiel &#8211; Assuming the signing of the macro is working, it sounds like it might be an issue with your security level settings.  See the comments above on 21-May-09 and 22-May-09.  Also see discussion on signing in comments from June 10th &#038; June 14th above.</p>
<p>-Carl</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michiel</title>
		<link>http://manage-this.com/handy-outlook-attachment-reminder-macro/comment-page-1/#comment-9785</link>
		<dc:creator>Michiel</dc:creator>
		<pubDate>Thu, 12 Nov 2009 11:01:43 +0000</pubDate>
		<guid isPermaLink="false">http://manage-this.com/handy-outlook-attachment-reminder-macro/#comment-9785</guid>
		<description>I&#039;ve been using this script for some time now. Seems to be working ok, except for one thing: my outlook warns me everytime I send an e-mail that a script is trying to read the e-mailaddresses involved.

I&#039;ve tried the self-signing above; but no improvement there.

Any ideas?</description>
		<content:encoded><![CDATA[<p>I&#8217;ve been using this script for some time now. Seems to be working ok, except for one thing: my outlook warns me everytime I send an e-mail that a script is trying to read the e-mailaddresses involved.</p>
<p>I&#8217;ve tried the self-signing above; but no improvement there.</p>
<p>Any ideas?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: carl</title>
		<link>http://manage-this.com/handy-outlook-attachment-reminder-macro/comment-page-1/#comment-7794</link>
		<dc:creator>carl</dc:creator>
		<pubDate>Fri, 17 Jul 2009 19:00:39 +0000</pubDate>
		<guid isPermaLink="false">http://manage-this.com/handy-outlook-attachment-reminder-macro/#comment-7794</guid>
		<description>Al - Sounds like it might be related to your macro security settings.  See my comment from May 21st, 2009 above and try some of the suggestions there.

-Carl</description>
		<content:encoded><![CDATA[<p>Al &#8211; Sounds like it might be related to your macro security settings.  See my comment from May 21st, 2009 above and try some of the suggestions there.</p>
<p>-Carl</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Al</title>
		<link>http://manage-this.com/handy-outlook-attachment-reminder-macro/comment-page-1/#comment-7787</link>
		<dc:creator>Al</dc:creator>
		<pubDate>Thu, 16 Jul 2009 16:56:33 +0000</pubDate>
		<guid isPermaLink="false">http://manage-this.com/handy-outlook-attachment-reminder-macro/#comment-7787</guid>
		<description>Hey Carl. 

Awesome macro, thanks! One issue, it works fine during my session. But when I close Outlook and reopen it, the macro doesn&#039;t work until I actually go into VB and look at it, then it starts working again. 

Do you have any idea why this would be?

Thanks in advance.</description>
		<content:encoded><![CDATA[<p>Hey Carl. </p>
<p>Awesome macro, thanks! One issue, it works fine during my session. But when I close Outlook and reopen it, the macro doesn&#8217;t work until I actually go into VB and look at it, then it starts working again. </p>
<p>Do you have any idea why this would be?</p>
<p>Thanks in advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: carl</title>
		<link>http://manage-this.com/handy-outlook-attachment-reminder-macro/comment-page-1/#comment-7473</link>
		<dc:creator>carl</dc:creator>
		<pubDate>Mon, 15 Jun 2009 03:48:52 +0000</pubDate>
		<guid isPermaLink="false">http://manage-this.com/handy-outlook-attachment-reminder-macro/#comment-7473</guid>
		<description>Mankidavu - Thanks for your comments... Very good point on signing the macro.  I do this on my machine as well to be able to leave the security level in place without getting a bunch of warnings.  I recommend that people follow the MSDN link in your comment above and use the instructions there.

Regarding the +vbMsgBoxSetForeground setting, I just updated it for the three checks in the macro.  This is based on my comment above from 25 Nov 08, but now it is in the base code.  Thanks for the suggestion!

-Carl</description>
		<content:encoded><![CDATA[<p>Mankidavu &#8211; Thanks for your comments&#8230; Very good point on signing the macro.  I do this on my machine as well to be able to leave the security level in place without getting a bunch of warnings.  I recommend that people follow the MSDN link in your comment above and use the instructions there.</p>
<p>Regarding the +vbMsgBoxSetForeground setting, I just updated it for the three checks in the macro.  This is based on my comment above from 25 Nov 08, but now it is in the base code.  Thanks for the suggestion!</p>
<p>-Carl</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mankidavu</title>
		<link>http://manage-this.com/handy-outlook-attachment-reminder-macro/comment-page-1/#comment-7434</link>
		<dc:creator>Mankidavu</dc:creator>
		<pubDate>Wed, 10 Jun 2009 10:40:43 +0000</pubDate>
		<guid isPermaLink="false">http://manage-this.com/handy-outlook-attachment-reminder-macro/#comment-7434</guid>
		<description>Hi Carl,
Thanks for compiling all of them together in this one.
This looks great.
Suggestions:-

1.Please add &#039; + vbMsgBoxSetForeground&#039; in your code itself, so that we&#039;ll get the prompt in the foregroud.
2.Please add the steps for signing a macro with selfsign utility.This will avoid the macro security issue.
http://msdn.microsoft.com/en-us/library/aa155754(office.10).aspx</description>
		<content:encoded><![CDATA[<p>Hi Carl,<br />
Thanks for compiling all of them together in this one.<br />
This looks great.<br />
Suggestions:-</p>
<p>1.Please add &#8216; + vbMsgBoxSetForeground&#8217; in your code itself, so that we&#8217;ll get the prompt in the foregroud.<br />
2.Please add the steps for signing a macro with selfsign utility.This will avoid the macro security issue.<br />
<a href="http://msdn.microsoft.com/en-us/library/aa155754(office.10).aspx">http://msdn.microsoft.com/en-us/library/aa155754(office.10).aspx</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: José</title>
		<link>http://manage-this.com/handy-outlook-attachment-reminder-macro/comment-page-1/#comment-7302</link>
		<dc:creator>José</dc:creator>
		<pubDate>Fri, 22 May 2009 13:21:53 +0000</pubDate>
		<guid isPermaLink="false">http://manage-this.com/handy-outlook-attachment-reminder-macro/#comment-7302</guid>
		<description>Thank you Carl,

You were right! The problem was related to macro security settings.

I have disabled the security selecting the option “No security check for all macros” and it worked.

Then, I have certificate the macro and selected the option “Warnings for signed macros; all unsigned macros disable”. At first Outlook run and first macro warning I choose to trust all macros signed by me. And that’s it, macro is working and no more security warnings.

Thank you for your help.
Regards,
José</description>
		<content:encoded><![CDATA[<p>Thank you Carl,</p>
<p>You were right! The problem was related to macro security settings.</p>
<p>I have disabled the security selecting the option “No security check for all macros” and it worked.</p>
<p>Then, I have certificate the macro and selected the option “Warnings for signed macros; all unsigned macros disable”. At first Outlook run and first macro warning I choose to trust all macros signed by me. And that’s it, macro is working and no more security warnings.</p>
<p>Thank you for your help.<br />
Regards,<br />
José</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: carl</title>
		<link>http://manage-this.com/handy-outlook-attachment-reminder-macro/comment-page-1/#comment-7293</link>
		<dc:creator>carl</dc:creator>
		<pubDate>Fri, 22 May 2009 03:03:00 +0000</pubDate>
		<guid isPermaLink="false">http://manage-this.com/handy-outlook-attachment-reminder-macro/#comment-7293</guid>
		<description>José -

No problem, people have called me much worse things!  A few more things you can try:

[1] It might be related to your macro security setting.  Try moving down to medium to see if it fixes the issue.  I think that is in &quot;Tools &gt; Trust Center&quot; for OL2007.  You have to *completely* shut down Outlook and restart it after changing the security level for it to stay.  

If you don&#039;t want to leave the setting at medium, there are instructions &lt;a href=&quot;http://office.microsoft.com/en-us/outlook/HA012317811033.aspx&quot; rel=&quot;nofollow&quot;&gt;here&lt;/a&gt;, &lt;a href=&quot;http://www.howto-outlook.com/howto/selfcert.htm&quot; rel=&quot;nofollow&quot;&gt;here&lt;/a&gt;, and &lt;a href=&quot;http://www.google.com/search?q=outlook+sign+macro&quot; rel=&quot;nofollow&quot;&gt;elsewhere online&lt;/a&gt; that show you how to certify your macro so it will run even when the security level is high.

[2] Try running some very basic macros and launching them manually (not automatically).  Here is an example:
     Sub HelloWorld()
           MsgBox &quot;Hola mundo&quot;
     End Sub

[3] If that works manually, now try getting it to trigger from the message send event.  Note that you can only have one macro with this title in your &quot;ThisOutlookSession&quot; module, so you will have to remove the other one before testing this one:
     Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
           MsgBox &quot;Hola mundo&quot;
     End Sub

[4] It shouldn&#039;t matter, but try deleting the &quot;Private&quot; qualifier on the first line of the macro.

Good luck, please post a note here if you figure it out.

-Carl</description>
		<content:encoded><![CDATA[<p>José -</p>
<p>No problem, people have called me much worse things!  A few more things you can try:</p>
<p>[1] It might be related to your macro security setting.  Try moving down to medium to see if it fixes the issue.  I think that is in &#8220;Tools > Trust Center&#8221; for OL2007.  You have to *completely* shut down Outlook and restart it after changing the security level for it to stay.  </p>
<p>If you don&#8217;t want to leave the setting at medium, there are instructions <a href="http://office.microsoft.com/en-us/outlook/HA012317811033.aspx">here</a>, <a href="http://www.howto-outlook.com/howto/selfcert.htm">here</a>, and <a href="http://www.google.com/search?q=outlook+sign+macro">elsewhere online</a> that show you how to certify your macro so it will run even when the security level is high.</p>
<p>[2] Try running some very basic macros and launching them manually (not automatically).  Here is an example:<br />
     Sub HelloWorld()<br />
           MsgBox &#8220;Hola mundo&#8221;<br />
     End Sub</p>
<p>[3] If that works manually, now try getting it to trigger from the message send event.  Note that you can only have one macro with this title in your &#8220;ThisOutlookSession&#8221; module, so you will have to remove the other one before testing this one:<br />
     Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)<br />
           MsgBox &#8220;Hola mundo&#8221;<br />
     End Sub</p>
<p>[4] It shouldn&#8217;t matter, but try deleting the &#8220;Private&#8221; qualifier on the first line of the macro.</p>
<p>Good luck, please post a note here if you figure it out.</p>
<p>-Carl</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: José</title>
		<link>http://manage-this.com/handy-outlook-attachment-reminder-macro/comment-page-1/#comment-7286</link>
		<dc:creator>José</dc:creator>
		<pubDate>Thu, 21 May 2009 13:32:46 +0000</pubDate>
		<guid isPermaLink="false">http://manage-this.com/handy-outlook-attachment-reminder-macro/#comment-7286</guid>
		<description>Sorry for misspelling your name… not Mark but Carl</description>
		<content:encoded><![CDATA[<p>Sorry for misspelling your name… not Mark but Carl</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: José</title>
		<link>http://manage-this.com/handy-outlook-attachment-reminder-macro/comment-page-1/#comment-7280</link>
		<dc:creator>José</dc:creator>
		<pubDate>Thu, 21 May 2009 08:35:13 +0000</pubDate>
		<guid isPermaLink="false">http://manage-this.com/handy-outlook-attachment-reminder-macro/#comment-7280</guid>
		<description>Hi Marc,

No I don’t see any error messages. All messages pass without warnings. I have tried to change the code using the “vbMsgBoxSetForeground” or “vbSystemModal” options but the behaviour is the same.

And no, I don’t have any other macros.

I even have try this on other computer with Outlook 2007 and the behaviour is exactly the same.  All messages pass without warnings after rebooting.

Thank for your help.</description>
		<content:encoded><![CDATA[<p>Hi Marc,</p>
<p>No I don’t see any error messages. All messages pass without warnings. I have tried to change the code using the “vbMsgBoxSetForeground” or “vbSystemModal” options but the behaviour is the same.</p>
<p>And no, I don’t have any other macros.</p>
<p>I even have try this on other computer with Outlook 2007 and the behaviour is exactly the same.  All messages pass without warnings after rebooting.</p>
<p>Thank for your help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: carl</title>
		<link>http://manage-this.com/handy-outlook-attachment-reminder-macro/comment-page-1/#comment-7277</link>
		<dc:creator>carl</dc:creator>
		<pubDate>Thu, 21 May 2009 03:04:10 +0000</pubDate>
		<guid isPermaLink="false">http://manage-this.com/handy-outlook-attachment-reminder-macro/#comment-7277</guid>
		<description>José - I&#039;m not sure what would cause that, but I don&#039;t have OL2007 so I&#039;m not able to try it.  Are you maybe having the issue that Matt described above where the pop-up message is hidden behind other windows?   

When you say the macro stopped working, what do you mean exactly?  Do you see error messages, or does it just let all messages pass without warning?  Do you have other macros that &lt;i&gt;are&lt;/i&gt; working, or do &lt;i&gt;all&lt;/i&gt; of your macros stop working?

-Carl</description>
		<content:encoded><![CDATA[<p>José &#8211; I&#8217;m not sure what would cause that, but I don&#8217;t have OL2007 so I&#8217;m not able to try it.  Are you maybe having the issue that Matt described above where the pop-up message is hidden behind other windows?   </p>
<p>When you say the macro stopped working, what do you mean exactly?  Do you see error messages, or does it just let all messages pass without warning?  Do you have other macros that <i>are</i> working, or do <i>all</i> of your macros stop working?</p>
<p>-Carl</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: José</title>
		<link>http://manage-this.com/handy-outlook-attachment-reminder-macro/comment-page-1/#comment-7271</link>
		<dc:creator>José</dc:creator>
		<pubDate>Wed, 20 May 2009 22:58:26 +0000</pubDate>
		<guid isPermaLink="false">http://manage-this.com/handy-outlook-attachment-reminder-macro/#comment-7271</guid>
		<description>Hi Carl,

I have tried your macro with Outlook 2007 SP2 and it only worked once. After rebooting the PC, the macro stopped working.

I can make the macro work again by deleting the VbaProject.OTM at %appdata%\Microsoft\Outlook  and make again the macro, but after rebooting it won’t work any more .

It is only working on the current session. If I restart the PC the macro does not work.

Any idea what’s happening?

Thank you.</description>
		<content:encoded><![CDATA[<p>Hi Carl,</p>
<p>I have tried your macro with Outlook 2007 SP2 and it only worked once. After rebooting the PC, the macro stopped working.</p>
<p>I can make the macro work again by deleting the VbaProject.OTM at %appdata%\Microsoft\Outlook  and make again the macro, but after rebooting it won’t work any more .</p>
<p>It is only working on the current session. If I restart the PC the macro does not work.</p>
<p>Any idea what’s happening?</p>
<p>Thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: carl</title>
		<link>http://manage-this.com/handy-outlook-attachment-reminder-macro/comment-page-1/#comment-7236</link>
		<dc:creator>carl</dc:creator>
		<pubDate>Mon, 18 May 2009 22:57:48 +0000</pubDate>
		<guid isPermaLink="false">http://manage-this.com/handy-outlook-attachment-reminder-macro/#comment-7236</guid>
		<description>Tammy - Good point, thanks for the comment.  If you have OL2007, you can just delete the &quot;CHECK #3&quot; section, everything before the &quot;ExitSub:&quot; line.

-Carl</description>
		<content:encoded><![CDATA[<p>Tammy &#8211; Good point, thanks for the comment.  If you have OL2007, you can just delete the &#8220;CHECK #3&#8243; section, everything before the &#8220;ExitSub:&#8221; line.</p>
<p>-Carl</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tammy</title>
		<link>http://manage-this.com/handy-outlook-attachment-reminder-macro/comment-page-1/#comment-7235</link>
		<dc:creator>Tammy</dc:creator>
		<pubDate>Mon, 18 May 2009 22:35:22 +0000</pubDate>
		<guid isPermaLink="false">http://manage-this.com/handy-outlook-attachment-reminder-macro/#comment-7235</guid>
		<description>Outlook 2007 checks for no location on appointments by default so the macro is redundant. Since the code is well annotated the section can be deleted.</description>
		<content:encoded><![CDATA[<p>Outlook 2007 checks for no location on appointments by default so the macro is redundant. Since the code is well annotated the section can be deleted.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: carl</title>
		<link>http://manage-this.com/handy-outlook-attachment-reminder-macro/comment-page-1/#comment-6773</link>
		<dc:creator>carl</dc:creator>
		<pubDate>Sat, 04 Apr 2009 23:28:59 +0000</pubDate>
		<guid isPermaLink="false">http://manage-this.com/handy-outlook-attachment-reminder-macro/#comment-6773</guid>
		<description>Larry - You&#039;ll have to give me a little more to go on.  Are you launching the macro from a toolbar button?  Do you get any error messages or pop-ups?  What OS and what version of Outlook are you using?  Do you have other macros that &lt;i&gt;are&lt;/i&gt; working?

-Carl</description>
		<content:encoded><![CDATA[<p>Larry &#8211; You&#8217;ll have to give me a little more to go on.  Are you launching the macro from a toolbar button?  Do you get any error messages or pop-ups?  What OS and what version of Outlook are you using?  Do you have other macros that <i>are</i> working?</p>
<p>-Carl</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: larry</title>
		<link>http://manage-this.com/handy-outlook-attachment-reminder-macro/comment-page-1/#comment-6758</link>
		<dc:creator>larry</dc:creator>
		<pubDate>Thu, 02 Apr 2009 15:15:55 +0000</pubDate>
		<guid isPermaLink="false">http://manage-this.com/handy-outlook-attachment-reminder-macro/#comment-6758</guid>
		<description>Macro has stopped working. Any updates as to why?</description>
		<content:encoded><![CDATA[<p>Macro has stopped working. Any updates as to why?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: carl</title>
		<link>http://manage-this.com/handy-outlook-attachment-reminder-macro/comment-page-1/#comment-6222</link>
		<dc:creator>carl</dc:creator>
		<pubDate>Sun, 22 Feb 2009 21:10:03 +0000</pubDate>
		<guid isPermaLink="false">http://manage-this.com/handy-outlook-attachment-reminder-macro/#comment-6222</guid>
		<description>Ed - Good suggestion, I already updated the code above to include the subject line.  It required changing just a single line in Check #2.

strBody = LCase(Item.Subject) &amp; LCase(Item.Body)

Thanks!
-Carl</description>
		<content:encoded><![CDATA[<p>Ed &#8211; Good suggestion, I already updated the code above to include the subject line.  It required changing just a single line in Check #2.</p>
<p>strBody = LCase(Item.Subject) &#038; LCase(Item.Body)</p>
<p>Thanks!<br />
-Carl</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ed</title>
		<link>http://manage-this.com/handy-outlook-attachment-reminder-macro/comment-page-1/#comment-6174</link>
		<dc:creator>Ed</dc:creator>
		<pubDate>Wed, 18 Feb 2009 13:37:57 +0000</pubDate>
		<guid isPermaLink="false">http://manage-this.com/handy-outlook-attachment-reminder-macro/#comment-6174</guid>
		<description>This is great but doesn&#039;t check the subject line, if i send an email file 3 of 4 in subject line and nothing else. Is there a way this is possible? Thanks Ed.</description>
		<content:encoded><![CDATA[<p>This is great but doesn&#8217;t check the subject line, if i send an email file 3 of 4 in subject line and nothing else. Is there a way this is possible? Thanks Ed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: carl</title>
		<link>http://manage-this.com/handy-outlook-attachment-reminder-macro/comment-page-1/#comment-5372</link>
		<dc:creator>carl</dc:creator>
		<pubDate>Thu, 27 Nov 2008 05:21:25 +0000</pubDate>
		<guid isPermaLink="false">http://manage-this.com/handy-outlook-attachment-reminder-macro/#comment-5372</guid>
		<description>Matt - Thanks for the feedback, glad to hear it helped.

-Carl</description>
		<content:encoded><![CDATA[<p>Matt &#8211; Thanks for the feedback, glad to hear it helped.</p>
<p>-Carl</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt</title>
		<link>http://manage-this.com/handy-outlook-attachment-reminder-macro/comment-page-1/#comment-5367</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Wed, 26 Nov 2008 16:20:11 +0000</pubDate>
		<guid isPermaLink="false">http://manage-this.com/handy-outlook-attachment-reminder-macro/#comment-5367</guid>
		<description>O and thanks a lot btw!  This is a really helpful piece of code... I&#039;ve gotten in trouble like 3 times at work for absent minded email omissions.  They&#039;re really anal about that in my office.  Very helpful for avoiding that problem again.  Thanks!</description>
		<content:encoded><![CDATA[<p>O and thanks a lot btw!  This is a really helpful piece of code&#8230; I&#8217;ve gotten in trouble like 3 times at work for absent minded email omissions.  They&#8217;re really anal about that in my office.  Very helpful for avoiding that problem again.  Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt</title>
		<link>http://manage-this.com/handy-outlook-attachment-reminder-macro/comment-page-1/#comment-5366</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Wed, 26 Nov 2008 16:14:56 +0000</pubDate>
		<guid isPermaLink="false">http://manage-this.com/handy-outlook-attachment-reminder-macro/#comment-5366</guid>
		<description>It worked, but strangely instead of just pulling up the option window it pulls up the entire inbox and the window.  It&#039;s not a big deal, you&#039;re not searching for the box anymore; but I figured from a developers standpoint you might be interested to know that.</description>
		<content:encoded><![CDATA[<p>It worked, but strangely instead of just pulling up the option window it pulls up the entire inbox and the window.  It&#8217;s not a big deal, you&#8217;re not searching for the box anymore; but I figured from a developers standpoint you might be interested to know that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: carl</title>
		<link>http://manage-this.com/handy-outlook-attachment-reminder-macro/comment-page-1/#comment-5357</link>
		<dc:creator>carl</dc:creator>
		<pubDate>Tue, 25 Nov 2008 19:13:15 +0000</pubDate>
		<guid isPermaLink="false">http://manage-this.com/handy-outlook-attachment-reminder-macro/#comment-5357</guid>
		<description>Matt - I have never experienced the issue you described.  There are a few things you could try to force the window to the top.  The properties of VBA message box are determined by a series of constants that get summed together.  Each constant represents a different attribute.  Look for the sections in the code that state something like &quot;vbYesNo + vbExclamation&quot;.  Try adding either &quot;vbMsgBoxSetForeground&quot; or &quot;vbSystemModal&quot;.  These are both valid attributes for the MsgBox command.  For example, the line

          vbYesNo + vbExclamation, &quot;Attachment Missing?&quot;)

Would be changed to 

          vbYesNo + vbExclamation + vbMsgBoxSetForeground, &quot;Attachment Missing?&quot;)

Please post a comment back here and let me know if it helped.  Good luck!

-Carl</description>
		<content:encoded><![CDATA[<p>Matt &#8211; I have never experienced the issue you described.  There are a few things you could try to force the window to the top.  The properties of VBA message box are determined by a series of constants that get summed together.  Each constant represents a different attribute.  Look for the sections in the code that state something like &#8220;vbYesNo + vbExclamation&#8221;.  Try adding either &#8220;vbMsgBoxSetForeground&#8221; or &#8220;vbSystemModal&#8221;.  These are both valid attributes for the MsgBox command.  For example, the line</p>
<p>          vbYesNo + vbExclamation, &#8220;Attachment Missing?&#8221;)</p>
<p>Would be changed to </p>
<p>          vbYesNo + vbExclamation + vbMsgBoxSetForeground, &#8220;Attachment Missing?&#8221;)</p>
<p>Please post a comment back here and let me know if it helped.  Good luck!</p>
<p>-Carl</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt</title>
		<link>http://manage-this.com/handy-outlook-attachment-reminder-macro/comment-page-1/#comment-5351</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Mon, 24 Nov 2008 18:05:35 +0000</pubDate>
		<guid isPermaLink="false">http://manage-this.com/handy-outlook-attachment-reminder-macro/#comment-5351</guid>
		<description>I&#039;ve tried several different versions of the above code from around the net, but seemingly all of them have the same problem.  When I send the email the box that asks whether I want to send the email or not pops up underneath the email itself, to wherever my inbox is.  Is there a way to change this?  Thanks!</description>
		<content:encoded><![CDATA[<p>I&#8217;ve tried several different versions of the above code from around the net, but seemingly all of them have the same problem.  When I send the email the box that asks whether I want to send the email or not pops up underneath the email itself, to wherever my inbox is.  Is there a way to change this?  Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JP</title>
		<link>http://manage-this.com/handy-outlook-attachment-reminder-macro/comment-page-1/#comment-3135</link>
		<dc:creator>JP</dc:creator>
		<pubDate>Mon, 29 Sep 2008 16:43:56 +0000</pubDate>
		<guid isPermaLink="false">http://manage-this.com/handy-outlook-attachment-reminder-macro/#comment-3135</guid>
		<description>Here&#039;s one variation that includes some other features as well:

&lt;a href=&quot;http://www.codeforexcelandoutlook.com/EtiquetteCheck.html&quot; title=&quot;Outlook Etiquette Check VBA Code&quot; rel=&quot;nofollow&quot;&gt;Outlook Etiquette Check VBA Code&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Here&#8217;s one variation that includes some other features as well:</p>
<p><a href="http://www.codeforexcelandoutlook.com/EtiquetteCheck.html" title="Outlook Etiquette Check VBA Code">Outlook Etiquette Check VBA Code</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: carl</title>
		<link>http://manage-this.com/handy-outlook-attachment-reminder-macro/comment-page-1/#comment-2681</link>
		<dc:creator>carl</dc:creator>
		<pubDate>Fri, 19 Sep 2008 13:30:25 +0000</pubDate>
		<guid isPermaLink="false">http://manage-this.com/handy-outlook-attachment-reminder-macro/#comment-2681</guid>
		<description>Vixmus -

The macro above does not recall messages or use the Outlook recall message feature.  It stops messages &lt;i&gt;before&lt;/i&gt; they are sent in case you want to correct any of the missing items.  The time stamp will still be whatever time you finally send the message.

Does that answer your question?

-Carl</description>
		<content:encoded><![CDATA[<p>Vixmus -</p>
<p>The macro above does not recall messages or use the Outlook recall message feature.  It stops messages <i>before</i> they are sent in case you want to correct any of the missing items.  The time stamp will still be whatever time you finally send the message.</p>
<p>Does that answer your question?</p>
<p>-Carl</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vixmus</title>
		<link>http://manage-this.com/handy-outlook-attachment-reminder-macro/comment-page-1/#comment-2673</link>
		<dc:creator>vixmus</dc:creator>
		<pubDate>Fri, 19 Sep 2008 05:37:17 +0000</pubDate>
		<guid isPermaLink="false">http://manage-this.com/handy-outlook-attachment-reminder-macro/#comment-2673</guid>
		<description>do you know what will be timestamp of the recalled message?</description>
		<content:encoded><![CDATA[<p>do you know what will be timestamp of the recalled message?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
