<?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>Done and Dusted &#187; Visual Studio Notes</title>
	<atom:link href="http://blog.bahoot.com/category/computers/software/visual-studio-notes/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.bahoot.com</link>
	<description>The blog that really BLOGS</description>
	<lastBuildDate>Fri, 30 Mar 2012 10:21:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>The name &#8216;  &#8216; does not exist in the current context</title>
		<link>http://blog.bahoot.com/computers/software/visual-studio-notes/exist-current-context/</link>
		<comments>http://blog.bahoot.com/computers/software/visual-studio-notes/exist-current-context/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 20:47:14 +0000</pubDate>
		<dc:creator>Capes</dc:creator>
				<category><![CDATA[c#]]></category>
		<category><![CDATA[Visual Studio Notes]]></category>

		<guid isPermaLink="false">http://blog.bahoot.com/?p=1271</guid>
		<description><![CDATA[When using C Sharp (C#) and you get the following debug error: The name &#8216;  &#8216; does not exist in the current context Then you need to declare the name, i.e. define its type.]]></description>
			<content:encoded><![CDATA[<p>When using C Sharp (C#) and you get the following debug error:</p>
<p style="text-align: center;"><strong>The name &#8216;  &#8216; does not exist in the current context</strong></p>
<p>Then you need to declare the name, i.e. define its type.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.bahoot.com/computers/software/visual-studio-notes/exist-current-context/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cannot implicitly convert type &#8216;int&#8217; to &#8216;string&#8217;</title>
		<link>http://blog.bahoot.com/computers/software/visual-studio-notes/implicitly-convert-type-int-string/</link>
		<comments>http://blog.bahoot.com/computers/software/visual-studio-notes/implicitly-convert-type-int-string/#comments</comments>
		<pubDate>Sun, 02 Aug 2009 19:15:23 +0000</pubDate>
		<dc:creator>Capes</dc:creator>
				<category><![CDATA[c#]]></category>
		<category><![CDATA[Visual Studio Notes]]></category>
		<category><![CDATA[c sharp]]></category>
		<category><![CDATA[convert]]></category>
		<category><![CDATA[debug error]]></category>
		<category><![CDATA[integer]]></category>
		<category><![CDATA[string]]></category>
		<category><![CDATA[string type]]></category>
		<category><![CDATA[type int]]></category>

		<guid isPermaLink="false">http://blog.bahoot.com/?p=366</guid>
		<description><![CDATA[When using C Sharp (C#) and you get the following debug error: Cannot implicitly convert type &#8216;int&#8217; to &#8216;string&#8217; You need to convert the variable to string from an integer variable by the following: Convert.ToString(XXX) Where XXX is the integer variable that needs converting to a String type variable.]]></description>
			<content:encoded><![CDATA[<p>When using C Sharp (C#) and you get the following debug error:</p>
<p style="text-align: center;"><strong>Cannot implicitly convert type &#8216;int&#8217; to &#8216;string&#8217;</strong></p>
<p>You need to convert the variable to string from an integer variable by the following:</p>
<p style="text-align: center;"><strong>Convert.ToString(</strong>XXX<strong>)</strong></p>
<p>Where <strong>XXX </strong>is the integer variable that needs converting to a String type variable.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.bahoot.com/computers/software/visual-studio-notes/implicitly-convert-type-int-string/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Debug Error: Visual Studio cannot start debugging because the debug target (path to  target and filename.exe) is missing. Please build the project and retry</title>
		<link>http://blog.bahoot.com/computers/software/visual-studio-notes/debug-error-visual-studio-start-debugging-debug-target-path-target-filenameexe-missing-build-project-retry/</link>
		<comments>http://blog.bahoot.com/computers/software/visual-studio-notes/debug-error-visual-studio-start-debugging-debug-target-path-target-filenameexe-missing-build-project-retry/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 22:25:07 +0000</pubDate>
		<dc:creator>Capes</dc:creator>
				<category><![CDATA[Visual Studio Notes]]></category>
		<category><![CDATA[code application]]></category>
		<category><![CDATA[debugging]]></category>
		<category><![CDATA[substition]]></category>
		<category><![CDATA[target path]]></category>
		<category><![CDATA[visual studio]]></category>

		<guid isPermaLink="false">http://blog.bahoot.com/?p=279</guid>
		<description><![CDATA[Visual Studio cannot start debugging because the debug target (path to target and filename.exe) is missing. Please build the project and retry. If you have deleted the startup form (usually Form1)  then you need to recreate the missing form or add a new form with the same name. OR you could enter a new form [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>Visual Studio cannot start debugging because the debug target (path to target and filename.exe) is missing. Please build the project and retry.</p></blockquote>
<p>If you have deleted the startup form (usually Form1)  then you need to recreate the missing form or add a new form with the same name.</p>
<p>OR you could enter a new form name in substitution of <strong>Form1()</strong> in the line in your code:</p>
<p>Application.Run(new Form1());</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.bahoot.com/computers/software/visual-studio-notes/debug-error-visual-studio-start-debugging-debug-target-path-target-filenameexe-missing-build-project-retry/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

