<?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>Electronic Technology Consultant</title>
	<atom:link href="http://www.electronic-technology-consultant.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.electronic-technology-consultant.com</link>
	<description>Electronic Technology Consultant Resources</description>
	<lastBuildDate>Wed, 18 Jan 2012 14:31:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>C# for C++ programmers</title>
		<link>http://www.electronic-technology-consultant.com/programming/c-sharp/c-specifications/c-for-c-programmers</link>
		<comments>http://www.electronic-technology-consultant.com/programming/c-sharp/c-specifications/c-for-c-programmers#comments</comments>
		<pubDate>Wed, 18 Jan 2012 14:31:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.C# Specifications]]></category>

		<guid isPermaLink="false">http://www.electronic-technology-consultant.com/?p=69</guid>
		<description><![CDATA[Good Resources C# FAQ for C++ programmers]]></description>
			<content:encoded><![CDATA[<h4>Good Resources</h4>
<p><a href="http://www.andymcm.com/csharpfaq.htm" target="_blank">C# FAQ for C++ programmers</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.electronic-technology-consultant.com/programming/c-sharp/c-specifications/c-for-c-programmers/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Calling A Form Control Event</title>
		<link>http://www.electronic-technology-consultant.com/programming/c-sharp/forms/calling-a-form-control-event</link>
		<comments>http://www.electronic-technology-consultant.com/programming/c-sharp/forms/calling-a-form-control-event#comments</comments>
		<pubDate>Wed, 23 Mar 2011 13:42:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Forms]]></category>

		<guid isPermaLink="false">http://www.electronic-technology-consultant.com/?p=42</guid>
		<description><![CDATA[When you need to pass sender and e to the function (e.g. a form control event) EventArgs MyArgs = new EventArgs(); frmMain_Load(this, MyArgs);]]></description>
			<content:encoded><![CDATA[<h4>When you need to pass sender and e to the function (e.g. a form control event)</h4>
<pre><code>
	EventArgs MyArgs = new EventArgs();
	frmMain_Load(this, MyArgs);
</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://www.electronic-technology-consultant.com/programming/c-sharp/forms/calling-a-form-control-event/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Variables</title>
		<link>http://www.electronic-technology-consultant.com/programming/c-sharp/memory/variables</link>
		<comments>http://www.electronic-technology-consultant.com/programming/c-sharp/memory/variables#comments</comments>
		<pubDate>Thu, 10 Feb 2011 15:06:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Memory]]></category>

		<guid isPermaLink="false">http://www.electronic-technology-consultant.com/?p=39</guid>
		<description><![CDATA[Binary Values You can&#8217;t specify a binary value in C# &#8211; specify in hexadecimal instead.]]></description>
			<content:encoded><![CDATA[<h4>Binary Values</h4>
<p>You can&#8217;t specify a binary value in C# &#8211; specify in hexadecimal instead.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.electronic-technology-consultant.com/programming/c-sharp/memory/variables/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Language Specifications</title>
		<link>http://www.electronic-technology-consultant.com/programming/c-sharp/c-specifications/language-specifications</link>
		<comments>http://www.electronic-technology-consultant.com/programming/c-sharp/c-specifications/language-specifications#comments</comments>
		<pubDate>Thu, 10 Feb 2011 15:04:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.C# Specifications]]></category>

		<guid isPermaLink="false">http://www.electronic-technology-consultant.com/?p=36</guid>
		<description><![CDATA[Good Resources http://msdn.microsoft.com/en-us/vcsharp/aa336809.aspx]]></description>
			<content:encoded><![CDATA[<h4>Good Resources</h4>
<p><a href="http://msdn.microsoft.com/en-us/vcsharp/aa336809.aspx" target="_blank">http://msdn.microsoft.com/en-us/vcsharp/aa336809.aspx</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.electronic-technology-consultant.com/programming/c-sharp/c-specifications/language-specifications/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Platform Target</title>
		<link>http://www.electronic-technology-consultant.com/programming/c-sharp/projects-general/platform-target</link>
		<comments>http://www.electronic-technology-consultant.com/programming/c-sharp/projects-general/platform-target#comments</comments>
		<pubDate>Thu, 23 Dec 2010 17:29:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.Projects General]]></category>

		<guid isPermaLink="false">http://www.electronic-technology-consultant.com/?p=31</guid>
		<description><![CDATA[A classic source of run problems in C# can be if your using components that are 32bit in an application with the Platform.  Setting the Platform Target to x86 will often solve this whilst still allowing the app to run on an x64 platform. Menu &#62; Project &#62; Project Properties &#62; Build &#62; Platform Target]]></description>
			<content:encoded><![CDATA[<p>A classic source of run problems in C# can be if your using components that are 32bit in an application with the Platform.  Setting the Platform Target to x86 will often solve this whilst still allowing the app to run on an x64 platform.</p>
<p><span id="more-31"></span></p>
<p>Menu &gt; Project &gt; Project Properties &gt; Build &gt; Platform Target</p>
]]></content:encoded>
			<wfw:commentRss>http://www.electronic-technology-consultant.com/programming/c-sharp/projects-general/platform-target/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Error Catching</title>
		<link>http://www.electronic-technology-consultant.com/programming/c-sharp/try-error-catching/using-error-catching</link>
		<comments>http://www.electronic-technology-consultant.com/programming/c-sharp/try-error-catching/using-error-catching#comments</comments>
		<pubDate>Thu, 16 Dec 2010 14:21:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Try Error Catching]]></category>

		<guid isPermaLink="false">http://www.electronic-technology-consultant.com/?p=28</guid>
		<description><![CDATA[Typical Try Catch try { } catch (Exception err) { }]]></description>
			<content:encoded><![CDATA[<h4>Typical Try Catch</h4>
<pre><code>
	try
	{

	}
	catch (Exception err)
	{

	}
</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://www.electronic-technology-consultant.com/programming/c-sharp/try-error-catching/using-error-catching/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>References</title>
		<link>http://www.electronic-technology-consultant.com/programming/c-sharp/projects-general/references</link>
		<comments>http://www.electronic-technology-consultant.com/programming/c-sharp/projects-general/references#comments</comments>
		<pubDate>Thu, 16 Dec 2010 13:41:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.Projects General]]></category>

		<guid isPermaLink="false">http://www.electronic-technology-consultant.com/?p=26</guid>
		<description><![CDATA[Add project references (e.g. .NET, COM etc plug ins) by right clicking References in Solution Explorer]]></description>
			<content:encoded><![CDATA[<p>Add project references (e.g. .NET, COM etc plug ins) by right clicking References in Solution Explorer</p>
]]></content:encoded>
			<wfw:commentRss>http://www.electronic-technology-consultant.com/programming/c-sharp/projects-general/references/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Strings General</title>
		<link>http://www.electronic-technology-consultant.com/programming/c-sharp/strings/strings-general</link>
		<comments>http://www.electronic-technology-consultant.com/programming/c-sharp/strings/strings-general#comments</comments>
		<pubDate>Thu, 16 Dec 2010 13:38:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Strings]]></category>

		<guid isPermaLink="false">http://www.electronic-technology-consultant.com/?p=24</guid>
		<description><![CDATA[Convert Value To String int Value; Value = 100; mytextbox.text = Value.ToString();]]></description>
			<content:encoded><![CDATA[<h4>Convert Value To String</h4>
<pre><code>
	int Value;
	Value = 100;
	mytextbox.text = Value.ToString();
</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://www.electronic-technology-consultant.com/programming/c-sharp/strings/strings-general/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>#define</title>
		<link>http://www.electronic-technology-consultant.com/programming/c-sharp/define/define</link>
		<comments>http://www.electronic-technology-consultant.com/programming/c-sharp/define/define#comments</comments>
		<pubDate>Thu, 16 Dec 2010 13:36:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Define]]></category>

		<guid isPermaLink="false">http://www.electronic-technology-consultant.com/?p=22</guid>
		<description><![CDATA[#define is only used to create somthing to test against (e.g. #if DEBUG #endif) You can&#8217;t use it to create macros. Bloody annoying, but get over it &#8211; you can&#8217;t!  So instead use constants. Note that you have to use constants within a class. Number Defines const int TIFF_VERSION = 42; String Defines const string [...]]]></description>
			<content:encoded><![CDATA[<p>#define is only used to create somthing to test against (e.g. #if DEBUG #endif)</p>
<p>You can&#8217;t use it to create macros.  Bloody annoying, but get over it &#8211; you can&#8217;t!  So instead use constants.  Note that you have to use constants within a class.<span id="more-22"></span></p>
<h4>Number Defines</h4>
<pre><code>
const int TIFF_VERSION = 42;
</code></pre>
<h4>String Defines</h4>
<pre><code>
const string MY_THINGS_PATH = "c:\\windows\\";
private const string MY_THINGS_PATH = "c:\\windows\\";
</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://www.electronic-technology-consultant.com/programming/c-sharp/define/define/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

