<?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>Programming Tips Tricks &#187; DotNet</title>
	<atom:link href="http://www.sharpprogrammer.com/category/dotnet/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sharpprogrammer.com</link>
	<description>For Smart Programmers</description>
	<lastBuildDate>Wed, 11 Nov 2009 03:53:47 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Learn C# Tips and Tricks, C# Projects</title>
		<link>http://www.sharpprogrammer.com/dotnet/learn-c-tips-and-tricks-c-projects/</link>
		<comments>http://www.sharpprogrammer.com/dotnet/learn-c-tips-and-tricks-c-projects/#comments</comments>
		<pubDate>Thu, 07 May 2009 02:36:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[DotNet]]></category>

		<guid isPermaLink="false">http://www.sharpprogrammer.com/dotnet/learn-c-tips-and-tricks-c-projects/</guid>
		<description><![CDATA[C# is a new language created by Microsoft and submitted to the ECMA for standardization. This new language was created by a team of people at Microsoft led by Anders Hejlsberg . Interestingly, Hejlsberg is a Microsoft Distinguished Engineer who has created other products and languages, including Borland Turbo C++ and Borland Delphi. With C#, [...]]]></description>
		<wfw:commentRss>http://www.sharpprogrammer.com/dotnet/learn-c-tips-and-tricks-c-projects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Read Excel File In C# .Net</title>
		<link>http://www.sharpprogrammer.com/dotnet/how-to-read-excel-file-in-c-net/</link>
		<comments>http://www.sharpprogrammer.com/dotnet/how-to-read-excel-file-in-c-net/#comments</comments>
		<pubDate>Wed, 08 Apr 2009 05:13:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[DotNet]]></category>
		<category><![CDATA[Csv File]]></category>
		<category><![CDATA[Csv File Xls]]></category>
		<category><![CDATA[Excel Csv Files]]></category>
		<category><![CDATA[Excel Sheet Asp Net]]></category>
		<category><![CDATA[Excel Workbook]]></category>
		<category><![CDATA[Microsoft Jet Oledb 4.0 Excel]]></category>
		<category><![CDATA[Oledbconnection Csv File]]></category>
		<category><![CDATA[Python Csv File]]></category>

		<guid isPermaLink="false">http://www.sharpprogrammer.com/dotnet/how-to-read-excel-file-in-c-net/</guid>
		<description><![CDATA[The same question is asked in other words as follows.

Reading Excel File By C#

Loading and reading the Microsoft Excel file contents

How to read an Excel file with OleDb and a simple SQL

Read Excel files in pure C# without interop

Read Excel files from ASP.NET

How to read excel cvs file from C#


Here is a sample code for [...]]]></description>
		<wfw:commentRss>http://www.sharpprogrammer.com/dotnet/how-to-read-excel-file-in-c-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C# &#8211; How To Set Selected Item In Combobox</title>
		<link>http://www.sharpprogrammer.com/dotnet/c-how-to-set-selected-item-in-combobox/</link>
		<comments>http://www.sharpprogrammer.com/dotnet/c-how-to-set-selected-item-in-combobox/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 03:36:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[DotNet]]></category>

		<guid isPermaLink="false">http://www.sharpprogrammer.com/dotnet/c-how-to-set-selected-item-in-combobox/</guid>
		<description><![CDATA[C# &#8211; How To Set Selected Item In Combobox
The same question is applicable for all other dot net (.NET) languages. The question could be rephrased as:

How to set selected item in combobox

ComboBox.SelectedItem Property (System.Windows.Forms)

How to set the default selected item in the ComboBox (C#, winform

set selected index of a ComboBox &#8211; bytes

C# .NET ComboBox selected [...]]]></description>
		<wfw:commentRss>http://www.sharpprogrammer.com/dotnet/c-how-to-set-selected-item-in-combobox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reading XML File From URL in C# Providing Logon Credentials</title>
		<link>http://www.sharpprogrammer.com/dotnet/reading-xml-file-from-url-in-c-providing-logon-credentials/</link>
		<comments>http://www.sharpprogrammer.com/dotnet/reading-xml-file-from-url-in-c-providing-logon-credentials/#comments</comments>
		<pubDate>Fri, 27 Mar 2009 03:22:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[DotNet]]></category>

		<guid isPermaLink="false">http://www.sharpprogrammer.com/c/reading-xml-file-from-url-in-c-providing-logon-credentials/</guid>
		<description><![CDATA[Reading XML File From URL in C# Providing Logon Credentials
How do I read an xml  file from URL that requires username and password to login to the page.
Use the following Code in C#

//Include the following packages
using System.Net;
using System.IO;



//request the particular web page
HttpWebRequest request = (HttpWebRequest)WebRequest.Create("http://sharpprogrammer.com/rss.xml");
//define the login credentials of the requested file/page
request.Credentials = new [...]]]></description>
		<wfw:commentRss>http://www.sharpprogrammer.com/dotnet/reading-xml-file-from-url-in-c-providing-logon-credentials/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
