<?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: Prevent Beep for TextBox Enter</title>
	<atom:link href="http://www.csharp411.com/prevent-beep-for-textbox-enter/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.csharp411.com/prevent-beep-for-textbox-enter/</link>
	<description>C# Information, Code, Tips and News</description>
	<lastBuildDate>Sat, 24 Jul 2010 01:26:51 -0400</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Danilo</title>
		<link>http://www.csharp411.com/prevent-beep-for-textbox-enter/comment-page-1/#comment-5442</link>
		<dc:creator>Danilo</dc:creator>
		<pubDate>Mon, 26 Apr 2010 08:03:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.mini-tools.com/at2/csharp/wordpress/prevent-beep-for-textbox-enter/#comment-5442</guid>
		<description>Amaziiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiinngggggg :):):)</description>
		<content:encoded><![CDATA[<p>Amaziiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiinngggggg <img src='http://www.csharp411.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> :):)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Miguel</title>
		<link>http://www.csharp411.com/prevent-beep-for-textbox-enter/comment-page-1/#comment-5402</link>
		<dc:creator>Miguel</dc:creator>
		<pubDate>Sat, 13 Mar 2010 00:13:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.mini-tools.com/at2/csharp/wordpress/prevent-beep-for-textbox-enter/#comment-5402</guid>
		<description>Great answer!!
e.SuppressKeyPress = true;
works perfectly.</description>
		<content:encoded><![CDATA[<p>Great answer!!<br />
e.SuppressKeyPress = true;<br />
works perfectly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anon</title>
		<link>http://www.csharp411.com/prevent-beep-for-textbox-enter/comment-page-1/#comment-5291</link>
		<dc:creator>Anon</dc:creator>
		<pubDate>Sun, 27 Sep 2009 12:59:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.mini-tools.com/at2/csharp/wordpress/prevent-beep-for-textbox-enter/#comment-5291</guid>
		<description>You can also do that:

private void textBox_KeyDown(object sender, KeyEventArgs e)
{
   if (e.KeyCode == Keys.Enter)
   {
       e.SuppressKeyPress = true;
   }
}</description>
		<content:encoded><![CDATA[<p>You can also do that:</p>
<p>private void textBox_KeyDown(object sender, KeyEventArgs e)<br />
{<br />
   if (e.KeyCode == Keys.Enter)<br />
   {<br />
       e.SuppressKeyPress = true;<br />
   }<br />
}</p>
]]></content:encoded>
	</item>
</channel>
</rss>
