<?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[Xp-Style einbinden, mit VC++ 2005 (Dialog-Anwendung) und Zeichensatz: Unicode, Wie ?]]></title><description><![CDATA[<p>Hallo zusammen,</p>
<p>kann mir jemand erklären, wie man das XP-Style-Manifest so einbindet, dass es sich später in der EXE befindet ? Ich habe eine rein dialog-basierte Anwendung, die UNICODE verwenden soll. Aber irgendwie, weiß ich nicht, wie man das Style aktiviert ...</p>
<p>IDE ist, wie im Titel schon erwähnt VC 2005 von Microsoft.</p>
<p>Schonmal vielen Dank im voraus <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":)"
      alt="🙂"
    /> !</p>
<p>Grüße Timon.</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/179708/xp-style-einbinden-mit-vc-2005-dialog-anwendung-und-zeichensatz-unicode-wie</link><generator>RSS for Node</generator><lastBuildDate>Thu, 09 Jul 2026 16:54:20 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/179708.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 24 Apr 2007 16:07:57 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Xp-Style einbinden, mit VC++ 2005 (Dialog-Anwendung) und Zeichensatz: Unicode, Wie ? on Tue, 24 Apr 2007 16:07:57 GMT]]></title><description><![CDATA[<p>Hallo zusammen,</p>
<p>kann mir jemand erklären, wie man das XP-Style-Manifest so einbindet, dass es sich später in der EXE befindet ? Ich habe eine rein dialog-basierte Anwendung, die UNICODE verwenden soll. Aber irgendwie, weiß ich nicht, wie man das Style aktiviert ...</p>
<p>IDE ist, wie im Titel schon erwähnt VC 2005 von Microsoft.</p>
<p>Schonmal vielen Dank im voraus <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":)"
      alt="🙂"
    /> !</p>
<p>Grüße Timon.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1272602</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1272602</guid><dc:creator><![CDATA[wParam]]></dc:creator><pubDate>Tue, 24 Apr 2007 16:07:57 GMT</pubDate></item><item><title><![CDATA[Reply to Xp-Style einbinden, mit VC++ 2005 (Dialog-Anwendung) und Zeichensatz: Unicode, Wie ? on Tue, 24 Apr 2007 17:06:20 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">#ifdef _UNICODE
#if defined _M_IX86
#pragma comment(linker,&quot;/manifestdependency:\&quot;type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='x86' publicKeyToken='6595b64144ccf1df' language='*'\&quot;&quot;)
#elif defined _M_IA64
#pragma comment(linker,&quot;/manifestdependency:\&quot;type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='ia64' publicKeyToken='6595b64144ccf1df' language='*'\&quot;&quot;)
#elif defined _M_X64
#pragma comment(linker,&quot;/manifestdependency:\&quot;type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='amd64' publicKeyToken='6595b64144ccf1df' language='*'\&quot;&quot;)
#else
#pragma comment(linker,&quot;/manifestdependency:\&quot;type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\&quot;&quot;)
#endif
#endif
</code></pre>
<p>Und in den Projekteinstellungen sagen, dass man das Manifest erzeugt und eingebettet haben will.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1272646</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1272646</guid><dc:creator><![CDATA[Jochen Kalmbach]]></dc:creator><pubDate>Tue, 24 Apr 2007 17:06:20 GMT</pubDate></item></channel></rss>