<?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: VBA: Yes or No Message Box</title>
	<atom:link href="http://www.automateexcel.com/2005/02/04/excel_vba_yes_or_no_message_box/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.automateexcel.com/2005/02/04/excel_vba_yes_or_no_message_box/</link>
	<description>Hundreds of Excel Tips &#38; Tricks</description>
	<lastBuildDate>Wed, 10 Mar 2010 07:03:23 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: AJ</title>
		<link>http://www.automateexcel.com/2005/02/04/excel_vba_yes_or_no_message_box/comment-page-1/#comment-1448</link>
		<dc:creator>AJ</dc:creator>
		<pubDate>Thu, 18 Feb 2010 06:53:12 +0000</pubDate>
		<guid isPermaLink="false">#comment-1448</guid>
		<description>Exactly what I wanted. Simple and effective.
Thanks a lot</description>
		<content:encoded><![CDATA[<p>Exactly what I wanted. Simple and effective.<br />
Thanks a lot</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dennis</title>
		<link>http://www.automateexcel.com/2005/02/04/excel_vba_yes_or_no_message_box/comment-page-1/#comment-1358</link>
		<dc:creator>Dennis</dc:creator>
		<pubDate>Fri, 13 Nov 2009 18:43:36 +0000</pubDate>
		<guid isPermaLink="false">#comment-1358</guid>
		<description>Thanx for this example!!!</description>
		<content:encoded><![CDATA[<p>Thanx for this example!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SK</title>
		<link>http://www.automateexcel.com/2005/02/04/excel_vba_yes_or_no_message_box/comment-page-1/#comment-1027</link>
		<dc:creator>SK</dc:creator>
		<pubDate>Mon, 10 Nov 2008 19:47:18 +0000</pubDate>
		<guid isPermaLink="false">#comment-1027</guid>
		<description>Sub MsgBox4()
        
        MsgBox title:=&quot;Analysis of Acctg Activities&quot;, Prompt:=&quot;Can not execute your command.  No data availabe for that period.&quot;

End Sub

When run this code it jumps to the conclusion.  &quot;Wrong number of orgumaents or invalid property assignment&quot; and shows the MsgBox.  I ran this code before several times without any problem.  Now I am using Excel 2007.</description>
		<content:encoded><![CDATA[<p>Sub MsgBox4()</p>
<p>        MsgBox title:=&#8221;Analysis of Acctg Activities&#8221;, Prompt:=&#8221;Can not execute your command.  No data availabe for that period.&#8221;</p>
<p>End Sub</p>
<p>When run this code it jumps to the conclusion.  &#8220;Wrong number of orgumaents or invalid property assignment&#8221; and shows the MsgBox.  I ran this code before several times without any problem.  Now I am using Excel 2007.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt</title>
		<link>http://www.automateexcel.com/2005/02/04/excel_vba_yes_or_no_message_box/comment-page-1/#comment-864</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Mon, 15 Sep 2008 21:18:22 +0000</pubDate>
		<guid isPermaLink="false">#comment-864</guid>
		<description>I would assume that you need an if/then/else loop based on x, otherwise it will hit your second line every time.</description>
		<content:encoded><![CDATA[<p>I would assume that you need an if/then/else loop based on x, otherwise it will hit your second line every time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: REVNED</title>
		<link>http://www.automateexcel.com/2005/02/04/excel_vba_yes_or_no_message_box/comment-page-1/#comment-627</link>
		<dc:creator>REVNED</dc:creator>
		<pubDate>Fri, 15 Aug 2008 04:55:13 +0000</pubDate>
		<guid isPermaLink="false">#comment-627</guid>
		<description>Private Sub Modify_Click()
x = MsgBox(&quot;Are you sure you want to modify records?&quot;, vbYesNo, &quot;SLSA Engineering Database&quot;)
            DoCmd.OpenForm &quot;Modify Record Menu&quot;, acNormal
            
 End Sub

.....i have this code but evertime i click No buttong in the message box it still open me a form... please help me if there is still missing in my codes and what was it?...Im not a programmer, anyone can help with this code?</description>
		<content:encoded><![CDATA[<p>Private Sub Modify_Click()<br />
x = MsgBox(&#8220;Are you sure you want to modify records?&#8221;, vbYesNo, &#8220;SLSA Engineering Database&#8221;)<br />
            DoCmd.OpenForm &#8220;Modify Record Menu&#8221;, acNormal</p>
<p> End Sub</p>
<p>&#8230;..i have this code but evertime i click No buttong in the message box it still open me a form&#8230; please help me if there is still missing in my codes and what was it?&#8230;Im not a programmer, anyone can help with this code?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MJB</title>
		<link>http://www.automateexcel.com/2005/02/04/excel_vba_yes_or_no_message_box/comment-page-1/#comment-501</link>
		<dc:creator>MJB</dc:creator>
		<pubDate>Tue, 05 Aug 2008 04:45:43 +0000</pubDate>
		<guid isPermaLink="false">#comment-501</guid>
		<description>Thanks for the useful example! I knew I wanted something like this, but I couldn&#039;t find anything similar in the help files. This yes/no msgbox was exactly what I needed.</description>
		<content:encoded><![CDATA[<p>Thanks for the useful example! I knew I wanted something like this, but I couldn&#8217;t find anything similar in the help files. This yes/no msgbox was exactly what I needed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark</title>
		<link>http://www.automateexcel.com/2005/02/04/excel_vba_yes_or_no_message_box/comment-page-1/#comment-79</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Mon, 07 Feb 2005 11:28:24 +0000</pubDate>
		<guid isPermaLink="false">#comment-79</guid>
		<description>I use the PRE tag for my code, unfortunately it doesn&#039;t automatically wrap without some CSS which I don&#039;t use.&lt;br /&gt;
&lt;br /&gt;
I had the message written out but shortened it so it didn&#039;t move my margins into my navigation.  However,&lt;br /&gt;
&lt;br /&gt;
I didn&#039;t give any thought to mutltiple languages and the need to always spell out the message box titles, thanks for the heads up.&lt;br /&gt;
</description>
		<content:encoded><![CDATA[<p>I use the PRE tag for my code, unfortunately it doesn&#8217;t automatically wrap without some CSS which I don&#8217;t use.</p>
<p>I had the message written out but shortened it so it didn&#8217;t move my margins into my navigation.  However,</p>
<p>I didn&#8217;t give any thought to mutltiple languages and the need to always spell out the message box titles, thanks for the heads up.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SDCarroll</title>
		<link>http://www.automateexcel.com/2005/02/04/excel_vba_yes_or_no_message_box/comment-page-1/#comment-78</link>
		<dc:creator>SDCarroll</dc:creator>
		<pubDate>Sun, 06 Feb 2005 18:19:33 +0000</pubDate>
		<guid isPermaLink="false">#comment-78</guid>
		<description>First thing I saw on the graphic above was three question marks, and immediately related that to using non-Roman fonts (as I deal with Korean users/operating systems/file names/dialog boxes  on a daily basis).  &lt;br /&gt;
&lt;br /&gt;
Recommend you spell out the question in the MsgBox - at least for the title.  I&#039;ve screwed up more than once by agreeing to something I shouldn&#039;t have.&lt;br /&gt;
&lt;br /&gt;
(I realize that this is a quick demonstration of if...then and not language incompatabilities.)</description>
		<content:encoded><![CDATA[<p>First thing I saw on the graphic above was three question marks, and immediately related that to using non-Roman fonts (as I deal with Korean users/operating systems/file names/dialog boxes  on a daily basis).  </p>
<p>Recommend you spell out the question in the MsgBox &#8211; at least for the title.  I&#8217;ve screwed up more than once by agreeing to something I shouldn&#8217;t have.</p>
<p>(I realize that this is a quick demonstration of if&#8230;then and not language incompatabilities.)</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic page generated in 0.477 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2010-03-15 14:34:49 -->
