<?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[BIF_NEWDIALOGSTYLE wird von VS nicht erkannt!]]></title><description><![CDATA[<p>Hallo Forum,<br />
ich benutze die BROWSEINFO Struktur um einen bestimmten Pfad zu holen,<br />
nur das mein VS das Flag BIF_NEWDIALOGSTYLE nicht kennt!!!</p>
<p>Fehler:</p>
<blockquote>
<p>error C2065: 'BIF_NEWDIALOGSTYLE' : undeclared identifier<br />
Error executing cl.exe.</p>
</blockquote>
<pre><code class="language-cpp">CoInitialize(NULL);
TCHAR    cPath[MAX_PATH];
BROWSEINFO bi    = { NULL };
bi.lpszTitle    = L&quot;Select...&quot;;
bi.ulFlags    = BIF_NEWDIALOGSTYLE; // das ist die Fehlerzeile!
</code></pre>
<p>ohne diesen geht es schon, aber das ist fast ein bißchen zu wenig!<br />
Was muß ich noch machen damit dieser auch erkannt wird???<br />
Das SP6 für VS hab ich schon installiert!<br />
<img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f615.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--confused_face"
      title=":confused:"
      alt="😕"
    /></p>
<p>lg<br />
pixel</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/152419/bif_newdialogstyle-wird-von-vs-nicht-erkannt</link><generator>RSS for Node</generator><lastBuildDate>Fri, 24 Jul 2026 07:33:09 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/152419.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 06 Jul 2006 08:32:16 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to BIF_NEWDIALOGSTYLE wird von VS nicht erkannt! on Thu, 06 Jul 2006 08:32:16 GMT]]></title><description><![CDATA[<p>Hallo Forum,<br />
ich benutze die BROWSEINFO Struktur um einen bestimmten Pfad zu holen,<br />
nur das mein VS das Flag BIF_NEWDIALOGSTYLE nicht kennt!!!</p>
<p>Fehler:</p>
<blockquote>
<p>error C2065: 'BIF_NEWDIALOGSTYLE' : undeclared identifier<br />
Error executing cl.exe.</p>
</blockquote>
<pre><code class="language-cpp">CoInitialize(NULL);
TCHAR    cPath[MAX_PATH];
BROWSEINFO bi    = { NULL };
bi.lpszTitle    = L&quot;Select...&quot;;
bi.ulFlags    = BIF_NEWDIALOGSTYLE; // das ist die Fehlerzeile!
</code></pre>
<p>ohne diesen geht es schon, aber das ist fast ein bißchen zu wenig!<br />
Was muß ich noch machen damit dieser auch erkannt wird???<br />
Das SP6 für VS hab ich schon installiert!<br />
<img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f615.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--confused_face"
      title=":confused:"
      alt="😕"
    /></p>
<p>lg<br />
pixel</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1092259</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1092259</guid><dc:creator><![CDATA[pixel]]></dc:creator><pubDate>Thu, 06 Jul 2006 08:32:16 GMT</pubDate></item><item><title><![CDATA[Reply to BIF_NEWDIALOGSTYLE wird von VS nicht erkannt! on Thu, 06 Jul 2006 09:48:49 GMT]]></title><description><![CDATA[<p>Dann guck mal in deiner stdafx welche Windowsversion definiert ist...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1092336</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1092336</guid><dc:creator><![CDATA[*D*Evil]]></dc:creator><pubDate>Thu, 06 Jul 2006 09:48:49 GMT</pubDate></item><item><title><![CDATA[Reply to BIF_NEWDIALOGSTYLE wird von VS nicht erkannt! on Thu, 06 Jul 2006 10:33:07 GMT]]></title><description><![CDATA[<p>Hallo (D)Evil,<br />
das hier ist</p>
<pre><code class="language-cpp">#ifndef _WIN32_WINNT
#define _WIN32_WINNT 0x0400
#endif
</code></pre>
<p>winnt <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f615.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--confused_face"
      title=":confused:"
      alt="😕"
    /></p>
<p>ist das nicht ok? das BIF_USENEWUI wird ebenfalls nicht erkannt, eigentlich kann<br />
ich diese 2 in der ShlObj.h garnicht finden, die sollten doch mit den anderen mit drinn sein:</p>
<pre><code class="language-cpp">// Browsing for directory.
#define BIF_RETURNONLYFSDIRS   0x0001  // For finding a folder to start document searching
#define BIF_DONTGOBELOWDOMAIN  0x0002  // For starting the Find Computer
#define BIF_STATUSTEXT         0x0004
#define BIF_RETURNFSANCESTORS  0x0008
#define BIF_EDITBOX            0x0010
#define BIF_VALIDATE           0x0020   // insist on valid result (or CANCEL)

#define BIF_BROWSEFORCOMPUTER  0x1000  // Browsing for Computers.
#define BIF_BROWSEFORPRINTER   0x2000  // Browsing for Printers
#define BIF_BROWSEINCLUDEFILES 0x4000  // Browsing for Everything
</code></pre>
<p>muß ich vielleicht mein VS updaten??</p>
<p>lg<br />
pixel</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1092360</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1092360</guid><dc:creator><![CDATA[pixel]]></dc:creator><pubDate>Thu, 06 Jul 2006 10:33:07 GMT</pubDate></item><item><title><![CDATA[Reply to BIF_NEWDIALOGSTYLE wird von VS nicht erkannt! on Thu, 06 Jul 2006 10:41:34 GMT]]></title><description><![CDATA[<p>schau dir mal folgenden thread an:<br />
<a href="http://forum.fachinformatiker.de/c-compiler-ides-apis/71176-shbrowseforfolder-bif_newdialogstyle.html?highlight=BIF_NEWDIALOGSTYLE" rel="nofollow">http://forum.fachinformatiker.de/c-compiler-ides-apis/71176-shbrowseforfolder-bif_newdialogstyle.html?highlight=BIF_NEWDIALOGSTYLE</a><br />
Ich hatte das problem auch...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1092368</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1092368</guid><dc:creator><![CDATA[TinTin]]></dc:creator><pubDate>Thu, 06 Jul 2006 10:41:34 GMT</pubDate></item><item><title><![CDATA[Reply to BIF_NEWDIALOGSTYLE wird von VS nicht erkannt! on Thu, 06 Jul 2006 10:54:33 GMT]]></title><description><![CDATA[<p>Welches VS!?</p>
<p>Falls Du VS6 verwenden solltest, so kennt Dein 8 Jahre altes Produkt die Datentypen/Konstanten natürlich nicht, welche erst von 5 Jahren hinzugefügt wurden... ServicePacks beheben nur Fehler und führen kein Update durch!</p>
<p>Wenn Du aktuelle &quot;Features&quot; verwenden willst, benötigst Du entweder ein aktuelles VS oder ein aktuelles PSDK.</p>
<p>Das letzte PSDK für VC6 ist vom Feb 2003:<br />
<a href="http://www.microsoft.com/msdownload/platformsdk/sdkupdate/psdk-full.htm" rel="nofollow">http://www.microsoft.com/msdownload/platformsdk/sdkupdate/psdk-full.htm</a></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1092376</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1092376</guid><dc:creator><![CDATA[Jochen Kalmbach]]></dc:creator><pubDate>Thu, 06 Jul 2006 10:54:33 GMT</pubDate></item><item><title><![CDATA[Reply to BIF_NEWDIALOGSTYLE wird von VS nicht erkannt! on Thu, 06 Jul 2006 11:31:26 GMT]]></title><description><![CDATA[<p><a href="http://windowssdk.msdn.microsoft.com/en-us/library/ms538017.aspx" rel="nofollow">http://windowssdk.msdn.microsoft.com/en-us/library/ms538017.aspx</a> ...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1092420</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1092420</guid><dc:creator><![CDATA[*D*Evil]]></dc:creator><pubDate>Thu, 06 Jul 2006 11:31:26 GMT</pubDate></item><item><title><![CDATA[Reply to BIF_NEWDIALOGSTYLE wird von VS nicht erkannt! on Thu, 06 Jul 2006 13:02:47 GMT]]></title><description><![CDATA[<p>Hallo,<br />
danke, erledigt, und die NEWDIALOGSTYLE macht auch keine Probleme mehr!</p>
<p>zuvor hatte ich als notlösung:</p>
<pre><code class="language-cpp">#define BIF_NEWDIALOGSTYLE 0x0040
</code></pre>
<p>aber das ist auch raus!<br />
lg<br />
pixel</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1092483</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1092483</guid><dc:creator><![CDATA[pixel]]></dc:creator><pubDate>Thu, 06 Jul 2006 13:02:47 GMT</pubDate></item></channel></rss>