<?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>kr1zz &#187; Visual Studio</title>
	<atom:link href="http://www.cristianonattero.com/blog/tag/visual-studio/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cristianonattero.com/blog</link>
	<description>Cristiano Nattero</description>
	<lastBuildDate>Tue, 07 Feb 2012 11:44:57 +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>VC++ directories (include, libraries&#8230;) in Visual Studio 2010</title>
		<link>http://www.cristianonattero.com/blog/2011/02/23/vc-directories-include-libraries-in-visual-studio-2010/</link>
		<comments>http://www.cristianonattero.com/blog/2011/02/23/vc-directories-include-libraries-in-visual-studio-2010/#comments</comments>
		<pubDate>Wed, 23 Feb 2011 16:14:34 +0000</pubDate>
		<dc:creator>kr1zz</dc:creator>
				<category><![CDATA[geek]]></category>
		<category><![CDATA[VC++ directories]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://www.cristianonattero.com/blog/?p=1089</guid>
		<description><![CDATA[In Microsoft Visual Studio 2010 VC++ directories are no longer a property of the IDE, so it is not possible to modify them from Tools-&#62;Options-&#62;Projects and Solutions-&#62;VC++Directories, it is necesary to specify them as project properties.
However, those who installed VS2010 on a box where a previous version was already installed, will find the same predefined [...]]]></description>
			<content:encoded><![CDATA[<p>In <strong>Microsoft Visual Studio 2010</strong> <strong>VC++ directories</strong> are no longer a property of the IDE, so it is not possible to modify them from Tools-&gt;Options-&gt;Projects and Solutions-&gt;VC++Directories, it is necesary to specify them as <strong>project properties</strong>.</p>
<p>However, those who installed VS2010 on a box where a previous version was already installed, will find the same predefined directories. This is an annoying problem if those directories are outdated: suppose you install a newer version of some libraries (e.g. <a title="boost libraries" href="http://www.boost.org/" target="_blank">boost</a>): then you need to remove the older one, but how?</p>
<p><a title="found here" href="http://social.msdn.microsoft.com/Forums/en/vcgeneral/thread/dc9f28f0-4f56-4da2-8413-2116c10b31a6" target="_blank">Here&#8217;s the solution</a>: go to $(USERPROFILE)\appdata\local\microsoft\msbuild\v4.0 and edit the profile files there (Microsoft.Cpp.Win32.user.props, in most cases).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cristianonattero.com/blog/2011/02/23/vc-directories-include-libraries-in-visual-studio-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ILOG CP optimizer: iostream.h not found?</title>
		<link>http://www.cristianonattero.com/blog/2011/02/16/ilog-cp-optimizer-iostream-h-not-found/</link>
		<comments>http://www.cristianonattero.com/blog/2011/02/16/ilog-cp-optimizer-iostream-h-not-found/#comments</comments>
		<pubDate>Wed, 16 Feb 2011 08:29:18 +0000</pubDate>
		<dc:creator>kr1zz</dc:creator>
				<category><![CDATA[geek]]></category>
		<category><![CDATA[Constraint Programming]]></category>
		<category><![CDATA[CP]]></category>
		<category><![CDATA[ILOG]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://www.cristianonattero.com/blog/?p=1082</guid>
		<description><![CDATA[I was trying IBM ILOG CP optimizer C++ API but found this error (Visual Studio 2010):
error C1083: Cannot open include file: &#8216;iostream.h&#8217;: No such file or directory
The error was located in ilosys.h and for a few seconds I thought I had to edit all the library .h files!!!  
Fortunately I discovered it&#8217;s not necessary, [...]]]></description>
			<content:encoded><![CDATA[<p>I was trying <strong><a title="this one" href="http://www-01.ibm.com/software/integration/optimization/cplex-cp-optimizer/" target="_blank">IBM ILOG CP optimizer</a> C++ API</strong> but found this error (<strong>Visual Studio 2010</strong>):</p>
<p><cite>error C1083: Cannot open include file: &#8216;iostream.h&#8217;: No such file or directory</cite></p>
<p>The error was located in ilosys.h and for a few seconds I thought I had to edit all the library .h files!!! <img src='http://www.cristianonattero.com/blog/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> </p>
<p>Fortunately <a title="thanks to the official forum" href="http://www.ibm.com/developerworks/forums/thread.jspa?threadID=307534" target="_blank">I discovered</a> it&#8217;s not necessary, simply</p>
<p><cite>#define IL_STD</cite></p>
<p>and things will work smoothly.</p>
<p>Enjoy <a title="I am getting acquainted to it but it looks like a very powerful tool!" href="http://en.wikipedia.org/wiki/Constraint_programming" target="_blank">Constraint Programming</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cristianonattero.com/blog/2011/02/16/ilog-cp-optimizer-iostream-h-not-found/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unavailable Visual Studio Intellisense in C++ projetcs</title>
		<link>http://www.cristianonattero.com/blog/2009/11/10/unavailable-visual-studio-intellisense-in-c-projetcs/</link>
		<comments>http://www.cristianonattero.com/blog/2009/11/10/unavailable-visual-studio-intellisense-in-c-projetcs/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 10:08:10 +0000</pubDate>
		<dc:creator>kr1zz</dc:creator>
				<category><![CDATA[geek]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[Intellisense]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[troubleshoot]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://www.cristianonattero.com/blog/?p=898</guid>
		<description><![CDATA[Sometimes, in C++ projects, Visual Studio IntelliSense stops working with apparently no reasons. There are many official and non official guides on how to troubleshoot it and they almost always say that, given some conditions are respected, if IntelliSense doesn&#8217;t work, it is suggested to delete its database to let Visual Studio rebuilds it. To [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes, in <strong>C++ projects</strong>, <strong><a title="famous Microfsoft Integrated Development Environment" href="http://en.wikipedia.org/wiki/Microsoft_Visual_Studio" target="_blank">Visual Studio</a> <a title="Microsoft Visual Studio autocompletion" href="http://en.wikipedia.org/wiki/IntelliSense" target="_blank">IntelliSense</a> stops working</strong> with apparently no reasons. There are many official and non official <a title="your friend google will lead to them" href="http://www.google.it/search?q=visual+studio+intellisense+troubleshoot+c%2B%2B" target="_blank">guides on how to <strong>troubleshoot</strong> it</a> and they almost always say that, given some conditions are respected, if <strong>IntelliSense doesn&#8217;t work</strong>, it is suggested to <a title="in the official guide" href="http://msdn.microsoft.com/en-us/library/ms235519.aspx" target="_blank">delete its database to let Visual Studio rebuilds it</a>. To be able to do it, it is necessary to close the current solution, otherwise windows wouldn&#8217;t allow the access to the .ncb file.</p>
<p>However this procedure apparently doesn&#8217;t work for me. <span id="more-898"></span>I have found that I also need to close the IDE and do something else. Here it follows the &#8211; at least for me &#8211; working sequence:</p>
<ol>
<li>clean the solution</li>
<li>close the solution</li>
<li>close Visual Studio</li>
<li>delete the .ncb file</li>
<li>open Visual Studio</li>
<li>load the solution and <strong>clean it again</strong></li>
<li>rebuild the solution</li>
</ol>
<p>What I find particularly annoying is that after a while the buggy IntelliSense goes crazy again and I have to stop working and repeat the whole sequence again. That&#8217;s a notable waste of time! <img src='http://www.cristianonattero.com/blog/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> </p>
<p>I have reproduces this problem on some computers, with VS 2005 and 2008, and with XP and Vista, but only with unmanaged C++. I haven&#8217;t tried managed C++, while a colleague of mine says it doesn&#8217;t happen with C#.</p>
<p>Comments or &#8211; possibly useful <img src='http://www.cristianonattero.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  &#8211; suggestions?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cristianonattero.com/blog/2009/11/10/unavailable-visual-studio-intellisense-in-c-projetcs/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>l&#8217;installazione di Visual Studio</title>
		<link>http://www.cristianonattero.com/blog/2008/09/16/linstallazione-di-visual-studio/</link>
		<comments>http://www.cristianonattero.com/blog/2008/09/16/linstallazione-di-visual-studio/#comments</comments>
		<pubDate>Tue, 16 Sep 2008 13:32:38 +0000</pubDate>
		<dc:creator>kr1zz</dc:creator>
				<category><![CDATA[geek]]></category>
		<category><![CDATA[installazione]]></category>
		<category><![CDATA[LinkedIn]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[tempi]]></category>
		<category><![CDATA[vista]]></category>
		<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://cristianonattero.com/blog/?p=590</guid>
		<description><![CDATA[Per installare Visual Studio 2008 su Vista c&#8217;è voluto poco più di un ora. In assoluto è un tempo lungo ma rispetto al 2005 &#8211; che come dice Edo richiede patch, service pack e palle varie &#8211; è molto poco.
Mi butto gioioso nello sviluppo  
]]></description>
			<content:encoded><![CDATA[<p>Per installare Visual Studio 2008 su Vista c&#8217;è voluto poco più di un ora. In assoluto è un tempo lungo ma rispetto al 2005 &#8211; che <a title="Microsoft, dacci oggi la nostra pena quotidiana" href="http://avventureweb.splinder.com/post/17231745/VS2005SP1+e+Windows+Server+200" target="_blank">come dice Edo</a> richiede patch, service pack e palle varie &#8211; è molto poco.</p>
<p>Mi butto gioioso nello sviluppo <img src='http://www.cristianonattero.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.cristianonattero.com/blog/2008/09/16/linstallazione-di-visual-studio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>stupido visual studio!</title>
		<link>http://www.cristianonattero.com/blog/2008/02/08/stupido-visual-studio/</link>
		<comments>http://www.cristianonattero.com/blog/2008/02/08/stupido-visual-studio/#comments</comments>
		<pubDate>Fri, 08 Feb 2008 10:55:31 +0000</pubDate>
		<dc:creator>kr1zz</dc:creator>
				<category><![CDATA[geek]]></category>
		<category><![CDATA[me]]></category>
		<category><![CDATA[dll]]></category>
		<category><![CDATA[installazione]]></category>
		<category><![CDATA[merda]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[nerd]]></category>
		<category><![CDATA[service pack]]></category>
		<category><![CDATA[tesi]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://cristianonattero.com/blog/2008/02/08/stupido-visual-studio/</guid>
		<description><![CDATA[Visual Studio mi fa arrabbiare perché è infido. Dopo aver passato quattro giorni a installarlo e disinstallarlo e reinstallarlo, cercando di scoprire l&#8217;ordine corretto con cui installare i vari service pack che servono, pensavo di aver risolto il problema.  Invece, a distanza di qualche tempo, ecco che ricomincia a piantarsi nel bel mezzo del [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Visual Studio</strong> mi fa arrabbiare perché è infido. Dopo aver passato quattro giorni a installarlo e disinstallarlo e reinstallarlo, cercando di scoprire l&#8217;ordine corretto con cui installare i vari <strong>service pack</strong> che servono, pensavo di aver risolto il problema.  Invece, a distanza di qualche tempo, ecco che ricomincia a piantarsi nel bel mezzo del debug, proponendomi di reinstallarlo per risolvere il problema (una dll mancante, dice).</p>
<p>Che palle <img src='http://www.cristianonattero.com/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.cristianonattero.com/blog/2008/02/08/stupido-visual-studio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

