<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>ForDevs &#187; Dot Net</title>
	<atom:link href="http://www.fordevs.com/category/programming/dotnet/feed" rel="self" type="application/rss+xml" />
	<link>http://www.fordevs.com</link>
	<description>We Learn We Share</description>
	<lastBuildDate>Tue, 25 May 2010 17:19:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>How to bring the cursor to the end of text in the textbox control &#8211; WPF C#</title>
		<link>http://www.fordevs.com/2010/03/how-to-bring-the-cursor-to-the-end-of-text-in-the-textbox-control-wpf-c.html</link>
		<comments>http://www.fordevs.com/2010/03/how-to-bring-the-cursor-to-the-end-of-text-in-the-textbox-control-wpf-c.html#comments</comments>
		<pubDate>Tue, 23 Mar 2010 13:56:29 +0000</pubDate>
		<dc:creator>joy</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[WPF]]></category>
		<category><![CDATA[C]]></category>
		<category><![CDATA[Textbox]]></category>

		<guid isPermaLink="false">http://www.fordevs.com/?p=704</guid>
		<description><![CDATA[Normally if we focus a textbox control the cursor would be in the start of the textbox.But when there is text already in the textbox it would be annoying if the cursor is in start.It would be better if the cursor is at the end of content in texbox. Thus to position the cursor at [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2010/03/how-to-bring-the-cursor-to-the-end-of-text-in-the-textbox-control-wpf-c.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Text Wrap a Label in WPF?</title>
		<link>http://www.fordevs.com/2010/01/how-to-text-wrap-a-label-in-wpf.html</link>
		<comments>http://www.fordevs.com/2010/01/how-to-text-wrap-a-label-in-wpf.html#comments</comments>
		<pubDate>Wed, 27 Jan 2010 05:02:45 +0000</pubDate>
		<dc:creator>joy</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[WPF]]></category>

		<guid isPermaLink="false">http://www.fordevs.com/?p=680</guid>
		<description><![CDATA[WPF does not allow text wrapping for label control.Thus to wrap a label with a fixed width,we have to place the TextBlock control inside the label control and set its TextWrapping property to &#8220;Wrap&#8221;. &#60;Label Width=&#8221;50&#8243;&#62; &#60;TextBlock TextWrapping=&#8221;Wrap&#8221;&#62; I am label with width 50&#60;/TextBlock&#62; &#60;/Label&#62;]]></description>
		<wfw:commentRss>http://www.fordevs.com/2010/01/how-to-text-wrap-a-label-in-wpf.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Call a Button Click From Another Button in c#</title>
		<link>http://www.fordevs.com/2009/11/how-to-call-a-button-click-from-another-button-in-c.html</link>
		<comments>http://www.fordevs.com/2009/11/how-to-call-a-button-click-from-another-button-in-c.html#comments</comments>
		<pubDate>Mon, 09 Nov 2009 06:47:34 +0000</pubDate>
		<dc:creator>joy</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[WPF]]></category>
		<category><![CDATA[Button]]></category>
		<category><![CDATA[Button Click]]></category>
		<category><![CDATA[Button Event]]></category>
		<category><![CDATA[C# button]]></category>
		<category><![CDATA[Call Button]]></category>

		<guid isPermaLink="false">http://www.fordevs.com/?p=619</guid>
		<description><![CDATA[If there is a requirement for calling a button click event from another button in c#, there is a easy way to do.We just need to call the PerformClick Method of the button to be fired. private void button1_Click&#40;object sender, EventArgs e&#41; &#123; button2.PerformClick&#40;&#41;; &#125; &#160; private void button2_Click&#40;object sender, EventArgs e&#41; &#123; System.Windows.Forms.MessageBox.Show&#40;&#34;I am [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2009/11/how-to-call-a-button-click-from-another-button-in-c.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Make Textbox Number Only &#8211; WPF</title>
		<link>http://www.fordevs.com/2009/09/make-textbox-number-only-wpf.html</link>
		<comments>http://www.fordevs.com/2009/09/make-textbox-number-only-wpf.html#comments</comments>
		<pubDate>Mon, 28 Sep 2009 17:08:56 +0000</pubDate>
		<dc:creator>joy</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[WPF]]></category>
		<category><![CDATA[Textbox]]></category>

		<guid isPermaLink="false">http://www.fordevs.com/?p=572</guid>
		<description><![CDATA[Coding : private void txt_PreviewTextInput&#40;object sender, TextCompositionEventArgs e&#41; &#123; e.Handled = !ValidNumeric&#40;e.Text&#41;; base.OnPreviewTextInput&#40;e&#41;; &#125; &#160; bool ValidNumeric&#40;string str&#41; &#123; bool ret = true; &#160; int l = str.Length; for &#40;int i = 0; i &#38;lt; l; i++&#41; &#123; char ch = str&#91;i&#93;; ret &#38;= Char.IsDigit&#40;ch&#41;; &#125; &#160; return ret; &#125; Thanks dedjo]]></description>
		<wfw:commentRss>http://www.fordevs.com/2009/09/make-textbox-number-only-wpf.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to open Immediate Window In VS 2005- Shortcuts</title>
		<link>http://www.fordevs.com/2009/07/how-to-open-immediate-window-in-vs-2005-shortcuts.html</link>
		<comments>http://www.fordevs.com/2009/07/how-to-open-immediate-window-in-vs-2005-shortcuts.html#comments</comments>
		<pubDate>Mon, 20 Jul 2009 11:49:19 +0000</pubDate>
		<dc:creator>joy</dc:creator>
				<category><![CDATA[Asp.net]]></category>
		<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[VS2005]]></category>
		<category><![CDATA[Window]]></category>

		<guid isPermaLink="false">http://www.fordevs.com/?p=550</guid>
		<description><![CDATA[The Immediate window is used to debug and evaluate expressions, execute statements, print variable values etc.The Immediate window also supports IntelliSense.There are different methods to open Immediate window. Method 1 : - We can open Immediate Window from debug menu. Debug-&#62;Windows-&#62;Immediate Window Some times Immediate Window menu would be missing.If it seems to be missing [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2009/07/how-to-open-immediate-window-in-vs-2005-shortcuts.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Absolute Position for Controls in Asp.net</title>
		<link>http://www.fordevs.com/2008/12/absolute-position-for-controls-in.html</link>
		<comments>http://www.fordevs.com/2008/12/absolute-position-for-controls-in.html#comments</comments>
		<pubDate>Wed, 03 Dec 2008 05:08:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tips And Tricks]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://localhost/fordevs/2008/12/absolute-position-for-controls-in-aspnet.html</guid>
		<description><![CDATA[By default for controls placed in the designer the layout position is as &#8216;Not Set&#8217; thus we cannot drag the control to a specified location. We have to change the layout position to absolute position to achieve that. In Visual Studio we can make the default postion as we need.For that we have to enable [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2008/12/absolute-position-for-controls-in.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>What is &quot;CLR(Common Language Runtime)&quot;</title>
		<link>http://www.fordevs.com/2008/11/what-is-clrcommon-language-runtime.html</link>
		<comments>http://www.fordevs.com/2008/11/what-is-clrcommon-language-runtime.html#comments</comments>
		<pubDate>Mon, 03 Nov 2008 06:32:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[DotNet Framework]]></category>
		<category><![CDATA[What-is]]></category>

		<guid isPermaLink="false">http://localhost/fordevs/2008/11/what-is-clrcommon-language-runtime.html</guid>
		<description><![CDATA[Common language runtime is a .NET Framework run-time environment which manages the execution of programs written in any of several supported languages. Microsoft refers to its Common Language Runtime as a “managed execution environment. Programmers writing in any of Visual Basic, Visual C++,or C# compile their programs into an intermediate form of code called Common [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2008/11/what-is-clrcommon-language-runtime.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>.Net Framework 4.0 Universe</title>
		<link>http://www.fordevs.com/2008/10/net-framework-40-universe.html</link>
		<comments>http://www.fordevs.com/2008/10/net-framework-40-universe.html#comments</comments>
		<pubDate>Thu, 30 Oct 2008 18:06:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[DotNet Framework]]></category>
		<category><![CDATA[Tech Stuff]]></category>
		<category><![CDATA[.Net]]></category>

		<guid isPermaLink="false">http://localhost/fordevs/2008/10/net-framework-40-universe.html</guid>
		<description><![CDATA[Microsoft announced Visual Studio 2010 and the .NET Framework 4.0 on September 29, 2008 which marks the next generation of developer tools from Microsoft. Based upon .NET Framework 4.0 Brad Abrams released a poster &#8220;.Net Framework 4.0 universe&#8221; , which gives you a clear view of new stuffs in .NET Framework 4.0.You can download the [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2008/10/net-framework-40-universe.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dot Net Interview Questions &#8211; Part 3</title>
		<link>http://www.fordevs.com/2008/10/1_23.html</link>
		<comments>http://www.fordevs.com/2008/10/1_23.html#comments</comments>
		<pubDate>Thu, 23 Oct 2008 08:17:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[DotNet IQ]]></category>

		<guid isPermaLink="false">http://localhost/fordevs/2008/10/dot-net-interview-questions-part-3.html</guid>
		<description><![CDATA[1.What is a stack? What is a heap? Ans : Stack is a place in the memory where value types are stored. Heap is a place in the memory where the reference types are stored. 2.What is Boxing/Unboxing? Ans : Boxing is used to convert value types to object.E.g. int x = 1;object obj = [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2008/10/1_23.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dot Net Interview Questions &#8211; Part 2</title>
		<link>http://www.fordevs.com/2008/10/1.html</link>
		<comments>http://www.fordevs.com/2008/10/1.html#comments</comments>
		<pubDate>Wed, 22 Oct 2008 10:02:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[DotNet IQ]]></category>

		<guid isPermaLink="false">http://localhost/fordevs/2008/10/dot-net-interview-questions-part-2.html</guid>
		<description><![CDATA[1.What are server controls?Ans : ASP.NET server controls are components that run on the server and encapsulate user-interface and other related functionality. They are used in ASP.NET pages and in ASP.NET code-behind classes. 2.What are Sealed Classes in C#? Ans : The sealed modifier is used to prevent derivation from a class. A compile-time error [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2008/10/1.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
