<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[VC++ NET 2003 -  VC++ 6]]></title><description><![CDATA[<p>Ich möchte in beiden Version 2 Projekte mit einer Header verwenden.<br />
Dafür brauche ich aber als Define die Version der IDE da ich dann unterschiedliche Libs einbinden muss.</p>
<p>bsp.</p>
<pre><code class="language-cpp">#ifdef WELCHEVERSIONDERIDE
#pragma comment(lib, &quot;databaselib.lib&quot;)
#else
#pragma comment(lib, &quot;databaselibvc7.lib&quot;)
#endif
</code></pre>
<p>Leider kenne ich das define dafür nicht falls es das überhaupt gibt.<br />
Danke</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/46152/vc-net-2003-vc-6</link><generator>RSS for Node</generator><lastBuildDate>Sun, 26 Apr 2026 18:29:28 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/46152.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 17 Aug 2003 10:00:35 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to VC++ NET 2003 -  VC++ 6 on Sun, 17 Aug 2003 10:00:35 GMT]]></title><description><![CDATA[<p>Ich möchte in beiden Version 2 Projekte mit einer Header verwenden.<br />
Dafür brauche ich aber als Define die Version der IDE da ich dann unterschiedliche Libs einbinden muss.</p>
<p>bsp.</p>
<pre><code class="language-cpp">#ifdef WELCHEVERSIONDERIDE
#pragma comment(lib, &quot;databaselib.lib&quot;)
#else
#pragma comment(lib, &quot;databaselibvc7.lib&quot;)
#endif
</code></pre>
<p>Leider kenne ich das define dafür nicht falls es das überhaupt gibt.<br />
Danke</p>
]]></description><link>https://www.c-plusplus.net/forum/post/334120</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/334120</guid><dc:creator><![CDATA[Unix-Tom]]></dc:creator><pubDate>Sun, 17 Aug 2003 10:00:35 GMT</pubDate></item><item><title><![CDATA[Reply to VC++ NET 2003 -  VC++ 6 on Sun, 17 Aug 2003 10:23:03 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">#if _MSC_VER &lt;= 1200
//&lt;= Visual C++ 6.0
#elif _MSC_VER &gt; 1200 &amp;&amp; _MSC_VER &lt; 1400
//.NET
#else
#error Error: Undefinierte Compiler Version
#endif
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/334134</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/334134</guid><dc:creator><![CDATA[Shlo]]></dc:creator><pubDate>Sun, 17 Aug 2003 10:23:03 GMT</pubDate></item><item><title><![CDATA[Reply to VC++ NET 2003 -  VC++ 6 on Sun, 17 Aug 2003 10:25:30 GMT]]></title><description><![CDATA[<p>Danke</p>
]]></description><link>https://www.c-plusplus.net/forum/post/334136</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/334136</guid><dc:creator><![CDATA[Unix-Tom]]></dc:creator><pubDate>Sun, 17 Aug 2003 10:25:30 GMT</pubDate></item></channel></rss>