<?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>Kylir&#039;s Website &#187; Visual Studio</title>
	<atom:link href="http://www.kylirhorton.com/tag/visual-studio/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kylirhorton.com</link>
	<description></description>
	<lastBuildDate>Sun, 09 Oct 2011 01:58:27 +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>How to Remove an Empty Axialis Toolbar from Visual Studio</title>
		<link>http://www.kylirhorton.com/2009/remove-empty-axialis-toolbar-from-visual-studio/</link>
		<comments>http://www.kylirhorton.com/2009/remove-empty-axialis-toolbar-from-visual-studio/#comments</comments>
		<pubDate>Fri, 20 Feb 2009 14:53:34 +0000</pubDate>
		<dc:creator>Kylir</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://www.kylirhorton.com/?p=86</guid>
		<description><![CDATA[I began having problems with the Axialis icon editing toolbar in Visual Studio a few weeks ago. It would appear as a short, empty, ugly little toolbar within Visual Studio. I would remove it, even delete it out of Visual Studio, and it still hung around and appeared there every time I started up. Fortunately [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone" title="Visual Studio" src="http://www.kylirhorton.com/images/visualStudio.jpg" alt="" width="425" height="100" /></p>
<p>I began having problems with the Axialis icon editing toolbar in Visual Studio a few weeks ago. It would appear as a short, empty, ugly little toolbar within Visual Studio. I would remove it, even delete it out of Visual Studio, and it still hung around and appeared there every time I started up. Fortunately for me, this problem has a simple fix.</p>
<p>If you&#8217;re using a x86 machine, edit the following within the registry:<br />
Key: <strong>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VisualStudio\9.0\AddIns\IconWorkshopAddin.Connect</strong><br />
Set value <strong>CommandPreload</strong> to <strong>0&#215;00000000 (0)</strong>.</p>
<p>If you&#8217;re using a x64 machine, edit the following within the registry:<br />
Key: <strong>HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\VisualStudio\9.0\AddIns\IconWorkshopAddin.Connect</strong><br />
Set value <strong>CommandPreload</strong> to <strong>0&#215;00000000 (0)</strong>.</p>
<p>References:<a href="http://www.axialis.com/forum/viewtopic.php?f=4&amp;t=2179"></p>
<p>http://www.axialis.com/forum/viewtopic.php?f=4&#038;t=2179</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kylirhorton.com/2009/remove-empty-axialis-toolbar-from-visual-studio/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How to fix broken project references in Visual Studio</title>
		<link>http://www.kylirhorton.com/2007/fix-broken-project-references-in-visual-studio/</link>
		<comments>http://www.kylirhorton.com/2007/fix-broken-project-references-in-visual-studio/#comments</comments>
		<pubDate>Thu, 06 Dec 2007 17:35:21 +0000</pubDate>
		<dc:creator>Kylir</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://www.kylirhorton.com/?p=4</guid>
		<description><![CDATA[The Problem Lately I&#8217;ve been experiencing some frustrating problems with references to DLL files in a Visual Studio solution. Since I&#8217;m working with a team of other programmers, we are obviously using a code versioning system—in this case SourceSafe. It seems that nearly every time I &#8220;get the latest version&#8221; of the solution from SourceSafe [...]]]></description>
			<content:encoded><![CDATA[<p><img title="Visual Studio" src="http://www.kylirhorton.com/images/visualStudio.jpg" alt="Visual Studio" width="425" height="100" /></p>
<p><strong>The Problem</strong><br />
Lately I&#8217;ve been experiencing some frustrating problems with references to DLL files in a Visual Studio solution. Since I&#8217;m working with a team of other programmers, we are obviously using a code versioning system—in this case SourceSafe. It seems that nearly every time I &#8220;get the latest version&#8221; of the solution from SourceSafe and then try to build it, I will get errors with references to missing DLLs. However, the &#8220;missing DLLs&#8221; actually exist. The problem is that the references to these DLLs within the solution are wrong.</p>
<p>Because each of the other programmers have a different path to their own copies of the same solution, they also have different paths to the DLLs that are included in that solution. One programmer will notice that his stuff isn&#8217;t compiling, he&#8217;ll fix the reference error, check it in, and then simultaneously break it on all the other programmers&#8217; machines (Or at least all those will a different file structure).</p>
<p><strong>The Fix</strong><br />
To fix it, you&#8217;ll want to use &#8220;Reference Paths&#8221; within Visual Studio:</p>
<ol>
<li>In Solution Explorer, right-click your project node and click Properties. The Project Designer should appear.</li>
<li>If you are using Visual Basic, select the References page and click the Reference Paths button. In the Reference Paths dialog box, type the path of the folder that contains the DLL that you want to reference in the Folder field, then click the Add Folder button. If you are using C#, select the Reference Paths page. In the Folder field, type the path of the folder that contains the item you want to reference, and then click the Add Folder button.</li>
</ol>
<p>That&#8217;s it! Reference Paths are saved within each user&#8217;s own profile, so they will not be propagated to the other SourceSafe users when you check in your files. When you build a solution, Visual Studio will first try to find the DLL with the hardcoded path that is provided within the solution. If it can&#8217;t find it, then it will look within the Reference Paths for the file, where you should now have the correct reference to the DLLs.</p>
<p>References:<a href="http://msdn2.microsoft.com/en-us/library/ayds71se(VS.80).aspx"></p>
<p>http://msdn2.microsoft.com/en-us/library/ayds71se(VS.80).aspx</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kylirhorton.com/2007/fix-broken-project-references-in-visual-studio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

