<?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[&amp;quot;Ordner auswählen&amp;quot; - Dialog]]></title><description><![CDATA[<pre><code class="language-cpp">BROWSEINFO bi = { 0 };
    bi.lpszTitle = _T(&quot;Pick a Directory&quot;);
    LPITEMIDLIST pidl = SHBrowseForFolder ( &amp;bi );
    if ( pidl != 0 )
    {
        // get the name of the folder
        TCHAR path[MAX_PATH];
        if ( SHGetPathFromIDList ( pidl, path ) )
        {
            MessageBox(path);
        }

        // free memory used
        IMalloc * imalloc = 0;
        if ( SUCCEEDED( SHGetMalloc ( &amp;imalloc )) )
        {
            imalloc-&gt;Free ( pidl );
            imalloc-&gt;Release ( );
        }
    }
</code></pre>
<p>Hi. <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="🙂"
    /> Ich verwende diesen Code, um einen Dialog zu eröfnnen, wo ich einen Ordner auswählen kann. Jedoch habe ich im Moment ein Problem und zwar möchte ich die Standard - Icons verändern. Beispielsweise die Ordner - Icons durch einen neuen ersezten, den ich selbst gezeichnet habe.</p>
<p>Habe im Internet danach gesucht, konnte jedoch dazu nichts finden. Ich bedanke mich schon mal im voraus bei allen, die mir eine hilfreiche Antwort schreiben. <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>
]]></description><link>https://www.c-plusplus.net/forum/topic/6392/quot-ordner-auswählen-quot-dialog</link><generator>RSS for Node</generator><lastBuildDate>Sun, 19 Apr 2026 02:03:53 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/6392.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 30 Jun 2003 13:59:00 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to &amp;quot;Ordner auswählen&amp;quot; - Dialog on Mon, 30 Jun 2003 13:59:00 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">BROWSEINFO bi = { 0 };
    bi.lpszTitle = _T(&quot;Pick a Directory&quot;);
    LPITEMIDLIST pidl = SHBrowseForFolder ( &amp;bi );
    if ( pidl != 0 )
    {
        // get the name of the folder
        TCHAR path[MAX_PATH];
        if ( SHGetPathFromIDList ( pidl, path ) )
        {
            MessageBox(path);
        }

        // free memory used
        IMalloc * imalloc = 0;
        if ( SUCCEEDED( SHGetMalloc ( &amp;imalloc )) )
        {
            imalloc-&gt;Free ( pidl );
            imalloc-&gt;Release ( );
        }
    }
</code></pre>
<p>Hi. <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="🙂"
    /> Ich verwende diesen Code, um einen Dialog zu eröfnnen, wo ich einen Ordner auswählen kann. Jedoch habe ich im Moment ein Problem und zwar möchte ich die Standard - Icons verändern. Beispielsweise die Ordner - Icons durch einen neuen ersezten, den ich selbst gezeichnet habe.</p>
<p>Habe im Internet danach gesucht, konnte jedoch dazu nichts finden. Ich bedanke mich schon mal im voraus bei allen, die mir eine hilfreiche Antwort schreiben. <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>
]]></description><link>https://www.c-plusplus.net/forum/post/31022</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/31022</guid><dc:creator><![CDATA[Mr-Baby]]></dc:creator><pubDate>Mon, 30 Jun 2003 13:59:00 GMT</pubDate></item><item><title><![CDATA[Reply to &amp;quot;Ordner auswählen&amp;quot; - Dialog on Mon, 30 Jun 2003 20:59:00 GMT]]></title><description><![CDATA[<p>Keiner, der mir behilflich sein kann???</p>
]]></description><link>https://www.c-plusplus.net/forum/post/31023</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/31023</guid><dc:creator><![CDATA[Mr-Baby]]></dc:creator><pubDate>Mon, 30 Jun 2003 20:59:00 GMT</pubDate></item></channel></rss>