<?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>The Way Of Coding &#187; tip</title>
	<atom:link href="http://thewayofcoding.com/tag/tip/feed/" rel="self" type="application/rss+xml" />
	<link>http://thewayofcoding.com</link>
	<description></description>
	<lastBuildDate>Mon, 28 Jun 2010 06:17:17 +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>DLL Files And .NET ClickOnce Deployment</title>
		<link>http://thewayofcoding.com/2008/03/dll-files-and-net-clickonce-deployment/</link>
		<comments>http://thewayofcoding.com/2008/03/dll-files-and-net-clickonce-deployment/#comments</comments>
		<pubDate>Sat, 01 Mar 2008 14:56:00 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[1]]></category>
		<category><![CDATA["copy always"]]></category>
		<category><![CDATA[.net]]></category>
		<category><![CDATA[clickonce]]></category>
		<category><![CDATA[deploy]]></category>
		<category><![CDATA[dll]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[tip]]></category>

		<guid isPermaLink="false">http://localhost/?p=27</guid>
		<description><![CDATA[I want to deploy one of my .NET apps as a ClickOnce application. The issue is that I am connecting to Oracle (see previous posts here and here). Connecting to Oracle requires at least, 4 DLL files that generally have to be in the same directory as the EXE file. The issue is that when [...]]]></description>
		<wfw:commentRss>http://thewayofcoding.com/2008/03/dll-files-and-net-clickonce-deployment/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>C# .NET Programming Tip: Oracle Connection Revised</title>
		<link>http://thewayofcoding.com/2008/03/c-net-programming-tip-oracle-connection-revised/</link>
		<comments>http://thewayofcoding.com/2008/03/c-net-programming-tip-oracle-connection-revised/#comments</comments>
		<pubDate>Sat, 01 Mar 2008 14:37:00 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[1]]></category>
		<category><![CDATA["no tnsnames"]]></category>
		<category><![CDATA[.net]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[connection]]></category>
		<category><![CDATA[easier]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[tip]]></category>

		<guid isPermaLink="false">http://localhost/?p=26</guid>
		<description><![CDATA[Take not that Microsoft will discontinue support for System.Data.OracleClient in .NET 4.0. This method should still work, but it will be depreciated&#8230; Now that I have had more time to work with Oracle, I found a better way to connect then described in my previous post. With this new method you can connect to multiple [...]]]></description>
		<wfw:commentRss>http://thewayofcoding.com/2008/03/c-net-programming-tip-oracle-connection-revised/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>C# .NET Programming Tip: Types</title>
		<link>http://thewayofcoding.com/2008/02/c-net-programming-tip-types/</link>
		<comments>http://thewayofcoding.com/2008/02/c-net-programming-tip-types/#comments</comments>
		<pubDate>Thu, 21 Feb 2008 12:47:00 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[1]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[GetType]]></category>
		<category><![CDATA[object]]></category>
		<category><![CDATA[tip]]></category>

		<guid isPermaLink="false">http://localhost/?p=25</guid>
		<description><![CDATA[Figuring out a variable&#8217;s type has become more important since now variables can be boxed by their parent class(s) (Where all can be &#8220;Object&#8221;). It&#8217;s nice because it allows for one generalized function to work with many types that perform an action on a common attribute, or first figure out what the object is and [...]]]></description>
		<wfw:commentRss>http://thewayofcoding.com/2008/02/c-net-programming-tip-types/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C# .NET Programming Tip: Using the Tag property of controls</title>
		<link>http://thewayofcoding.com/2008/02/c-net-programming-tip-using-the-tag-property-of-controls/</link>
		<comments>http://thewayofcoding.com/2008/02/c-net-programming-tip-using-the-tag-property-of-controls/#comments</comments>
		<pubDate>Sat, 16 Feb 2008 18:11:00 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[1]]></category>
		<category><![CDATA[.net]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[control]]></category>
		<category><![CDATA[forms]]></category>
		<category><![CDATA[passing]]></category>
		<category><![CDATA[programmatic]]></category>
		<category><![CDATA[tag]]></category>
		<category><![CDATA[tip]]></category>

		<guid isPermaLink="false">http://localhost/?p=21</guid>
		<description><![CDATA[I&#8217;ve been doing C# programming at my job lately. Throughout the process I&#8217;ve hit a few little walls that were difficult to find answers for and thought writing down the solutions here would be good for myself any anyone who happens to find this by-way-of search engine. So as I come upon these little bits [...]]]></description>
		<wfw:commentRss>http://thewayofcoding.com/2008/02/c-net-programming-tip-using-the-tag-property-of-controls/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
