<?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; C#</title>
	<atom:link href="http://www.fordevs.com/category/programming/c-sharp/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 set border color of a panel in c#</title>
		<link>http://www.fordevs.com/2009/12/how-to-set-border-color-of-a-panel-in-c.html</link>
		<comments>http://www.fordevs.com/2009/12/how-to-set-border-color-of-a-panel-in-c.html#comments</comments>
		<pubDate>Mon, 07 Dec 2009 15:09:33 +0000</pubDate>
		<dc:creator>joy</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Color]]></category>
		<category><![CDATA[Panel]]></category>

		<guid isPermaLink="false">http://www.fordevs.com/?p=642</guid>
		<description><![CDATA[In c# for panel there no property to set border color directly.We can only set the border style using BorderStyle. To set the border color of a panel, Step 1 : Set BorderStyle property to None. Step 2 : Draw a rectangle and set the pen color in paint event of the panel private void [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2009/12/how-to-set-border-color-of-a-panel-in-c.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>Steps to Create Setup and Deployment Project in Dot Net VS 2008</title>
		<link>http://www.fordevs.com/2009/07/steps-to-create-setup-and-deployment-project-in-dot-net-vs-2008.html</link>
		<comments>http://www.fordevs.com/2009/07/steps-to-create-setup-and-deployment-project-in-dot-net-vs-2008.html#comments</comments>
		<pubDate>Sat, 11 Jul 2009 07:12:19 +0000</pubDate>
		<dc:creator>praveen</dc:creator>
				<category><![CDATA[Asp.net]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[.Net]]></category>
		<category><![CDATA[Project]]></category>

		<guid isPermaLink="false">http://www.fordevs.com/?p=452</guid>
		<description><![CDATA[Step 1 Create your own windows application. Create a new Windows application project in C# and named it as Sample. Step 2 Design your own application. Here we have a simple login form for example. Step 3 After completing the design and coding, build the solution of the project in release mode. Step 4 Check [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2009/07/steps-to-create-setup-and-deployment-project-in-dot-net-vs-2008.html/feed</wfw:commentRss>
		<slash:comments>33</slash:comments>
		</item>
		<item>
		<title>Copy-Paste to and from clipboard using c#</title>
		<link>http://www.fordevs.com/2009/02/copy-paste-to-and-from-clipboard-using.html</link>
		<comments>http://www.fordevs.com/2009/02/copy-paste-to-and-from-clipboard-using.html#comments</comments>
		<pubDate>Wed, 18 Feb 2009 09:23:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[clipboard]]></category>

		<guid isPermaLink="false">http://localhost/fordevs/2009/02/copy-paste-to-and-from-clipboard-using-c.html</guid>
		<description><![CDATA[To make the operations such as copy paste using c#,we have to use the Clipboard Class which provides methods to place data on and retrieve data from the system Clipboard. Example :- Copy the text from txtCopy to clipboard System.Windows.Forms.Clipboard.SetDataObject&#40;txtCopy.Text, true&#41;; Paste the text from clipboard to txtPaste IDataObject clipData = Clipboard.GetDataObject&#40;&#41;; if &#40;clipData.GetDataPresent&#40;DataFormats.Text&#41;&#41; &#123; [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2009/02/copy-paste-to-and-from-clipboard-using.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get Clients IP Address Using ASP.NET</title>
		<link>http://www.fordevs.com/2009/02/get-clients-ip-address-using-aspnet.html</link>
		<comments>http://www.fordevs.com/2009/02/get-clients-ip-address-using-aspnet.html#comments</comments>
		<pubDate>Wed, 18 Feb 2009 14:32:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Asp.net]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[ip address]]></category>

		<guid isPermaLink="false">http://localhost/fordevs/2009/02/get-clients-ip-address-using-aspnet.html</guid>
		<description><![CDATA[We can get the clients IP address using the Request object&#8217;s(The Request object retrieves the values that the client browser passed to the server during an HTTP request. ) property Request.ServerVariables Collection.Request.ServerVariables Collection gets the values of predetermined environment variables. &#8220;REMOTE_ADDR&#8221; gets the IP address of the remote host making the request.&#160; string ipaddr; ipaddr [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2009/02/get-clients-ip-address-using-aspnet.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Convert Text to Image using c#</title>
		<link>http://www.fordevs.com/2009/02/convert-text-to-image-using-c.html</link>
		<comments>http://www.fordevs.com/2009/02/convert-text-to-image-using-c.html#comments</comments>
		<pubDate>Fri, 13 Feb 2009 16:52:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Text to Image]]></category>

		<guid isPermaLink="false">http://localhost/fordevs/2009/02/convert-text-to-image-using-c.html</guid>
		<description><![CDATA[We can Convert text to image in c# using System.Drawing namespace.Here we create a bitmap image and use its Graphics property to convert text passed to image and place the image in a picture box. private void TextToImage&#40;&#41; &#123; Color BackColor = Color.White; String FontName = &#34;Times New Roman&#34;; int FontSize = 25; int Height [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2009/02/convert-text-to-image-using-c.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get available server names of Sql Server within the local network &#8211; SqlDataSourceEnumerator</title>
		<link>http://www.fordevs.com/2009/01/get-avaiable-server-names-of-sql-server.html</link>
		<comments>http://www.fordevs.com/2009/01/get-avaiable-server-names-of-sql-server.html#comments</comments>
		<pubDate>Wed, 07 Jan 2009 11:32:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[server names]]></category>

		<guid isPermaLink="false">http://localhost/fordevs/2009/01/get-available-server-names-of-sql-server-within-the-local-network-sqldatasourceenumerator.html</guid>
		<description><![CDATA[SqlDataSourceEnumerator is a class in .net framework that gets the available instances of SQL Server within the local network. DataTable dt = SqlDataSourceEnumerator.Instance.GetDataSources&#40;&#41;; SqlDataSourceEnumerator.Instance.GetDataSources() returns a datatable with the available servers in the current network. The DataTable returned as 4 colunms such as :- ServerName InstanceName IsClustered Version]]></description>
		<wfw:commentRss>http://www.fordevs.com/2009/01/get-avaiable-server-names-of-sql-server.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
