<?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: C# Focus TextBox on Form Load</title>
	<atom:link href="http://www.csharp411.com/c-focus-textbox-on-form-load/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.csharp411.com/c-focus-textbox-on-form-load/</link>
	<description>C# Development</description>
	<lastBuildDate>Fri, 03 Feb 2012 11:14:43 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: StalePhish</title>
		<link>http://www.csharp411.com/c-focus-textbox-on-form-load/#comment-874</link>
		<dc:creator>StalePhish</dc:creator>
		<pubDate>Mon, 17 Oct 2011 17:01:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.csharp411.com/c-focus-textbox-on-form-load/#comment-874</guid>
		<description>I just did Ted&#039;s suggestion--- I did textBox1.Select() at the end of my constructor and it did the trick</description>
		<content:encoded><![CDATA[<p>I just did Ted&#8217;s suggestion&#8212; I did textBox1.Select() at the end of my constructor and it did the trick</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ted C.</title>
		<link>http://www.csharp411.com/c-focus-textbox-on-form-load/#comment-873</link>
		<dc:creator>Ted C.</dc:creator>
		<pubDate>Tue, 24 May 2011 18:21:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.csharp411.com/c-focus-textbox-on-form-load/#comment-873</guid>
		<description>Have you tried to simply add a line under the initialization line in class Form1?

                 textBox1.Select();

So that the class looks like this:

     public partial class Form1 : Form
         {
             public Form1()
             {
                 InitializeComponent();
                 textBox1.Select();
            
             }</description>
		<content:encoded><![CDATA[<p>Have you tried to simply add a line under the initialization line in class Form1?</p>
<p>                 textBox1.Select();</p>
<p>So that the class looks like this:</p>
<p>     public partial class Form1 : Form<br />
         {<br />
             public Form1()<br />
             {<br />
                 InitializeComponent();<br />
                 textBox1.Select();</p>
<p>             }</p>
]]></content:encoded>
	</item>
</channel>
</rss>

