<?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[wie erstell ich ein SubMenu ???]]></title><description><![CDATA[<p>ich haette dennoch eine frage....</p>
<p>wie mach ich das wenn ich nun meine menüoberpunkte habe<br />
&quot;datei&quot; &quot;einstellung&quot; ...</p>
<p>das wenn ich unter einstellungen gehe dort ein punkt auswaehle zum Bsp Geschwindigkeit... das sich dieser noch mals unterteilt in Geschw. 10, Geschw. 20 ...</p>
<pre><code>Datei Einstellung 
v 
Geschwindigkeit &gt; Geschwindigkeit - 10 
&gt; Geschwindigkeit - 20 
&gt; Geschwindigkeit - 30 
&gt; Geschwindigkeit - 40  

Datei   Einstellung 
             v 
        Geschwindigkeit &gt; Geschwindigkeit - 10 
                        &gt; Geschwindigkeit - 20 
                        &gt; Geschwindigkeit - 30 
                        &gt; Geschwindigkeit - 40
</code></pre>
<p>hoffe es ist verstaendlich was ich meine</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/155587/wie-erstell-ich-ein-submenu</link><generator>RSS for Node</generator><lastBuildDate>Thu, 23 Jul 2026 15:50:41 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/155587.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 07 Aug 2006 18:04:50 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to wie erstell ich ein SubMenu ??? on Mon, 07 Aug 2006 18:07:41 GMT]]></title><description><![CDATA[<p>ich haette dennoch eine frage....</p>
<p>wie mach ich das wenn ich nun meine menüoberpunkte habe<br />
&quot;datei&quot; &quot;einstellung&quot; ...</p>
<p>das wenn ich unter einstellungen gehe dort ein punkt auswaehle zum Bsp Geschwindigkeit... das sich dieser noch mals unterteilt in Geschw. 10, Geschw. 20 ...</p>
<pre><code>Datei Einstellung 
v 
Geschwindigkeit &gt; Geschwindigkeit - 10 
&gt; Geschwindigkeit - 20 
&gt; Geschwindigkeit - 30 
&gt; Geschwindigkeit - 40  

Datei   Einstellung 
             v 
        Geschwindigkeit &gt; Geschwindigkeit - 10 
                        &gt; Geschwindigkeit - 20 
                        &gt; Geschwindigkeit - 30 
                        &gt; Geschwindigkeit - 40
</code></pre>
<p>hoffe es ist verstaendlich was ich meine</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1112457</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1112457</guid><dc:creator><![CDATA[T0bi]]></dc:creator><pubDate>Mon, 07 Aug 2006 18:07:41 GMT</pubDate></item><item><title><![CDATA[Reply to wie erstell ich ein SubMenu ??? on Mon, 07 Aug 2006 18:23:30 GMT]]></title><description><![CDATA[<p>Wenn du die MS Visual Studio benutzst, dann muss du dort nur ein menu erstellen, und einfach immer weiter auf leere kästchen klicken und menueinträge eintippen, und entweder ID hinzufügen, oder als &quot;popup&quot; markieren, damit du so ein pfeilchen nach rechts bekommst, wo du weitere unterpunkte eintragen kannst (Dieser ressourcenverwaltungsdingsbums hat bei mir auch anfangs nicht funktioniert, aber eigentlich ist es sehr nützlich)</p>
<p>wenn nich, dann muss du in deiner resource mit BEGIN und END die unterpunkte hinzufügen, genauso wie die normalen menueinträge...</p>
<p>hier, dieser tutorial hat mir sehr geholfen, weis ned obs bessere gibt, kenn mich da ned aus, aber hir steht des auf jeden fall drinne:</p>
<p><a href="http://www.winprog.org/tutorial/menus.html" rel="nofollow">http://www.winprog.org/tutorial/menus.html</a></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1112477</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1112477</guid><dc:creator><![CDATA[Andrey]]></dc:creator><pubDate>Mon, 07 Aug 2006 18:23:30 GMT</pubDate></item><item><title><![CDATA[Reply to wie erstell ich ein SubMenu ??? on Mon, 07 Aug 2006 18:32:11 GMT]]></title><description><![CDATA[<p>als so gehts net ....</p>
<pre><code class="language-cpp">USERMENU MENU
BEGIN

    POPUP &quot;&amp;Datei&quot;
    BEGIN

        MENUITEM &quot;&amp;Neu&quot;, IDM_NEW
        MENUITEM &quot;&amp;Öffnen&quot;, IDM_LOAD
        MENUITEM &quot;&amp;Speichern&quot;, IDM_SAVE
        MENUITEM &quot;&amp;Beenden&quot;, IDM_QUIT
    END

    POPUP &quot;&amp;Einstellung&quot;
    BEGIN

        MENUITEM &quot;&amp;Geschwindigkeit&quot;, IDM_SPEED
////////////////////////////////////////////////////////////////////////////////
        BEGIN

            MENUITEM &quot;&amp;Geschwindigkeit - 1&quot;, IDM_SPPED_1
            MENUITEM &quot;&amp;Geschwindigkeit - 5&quot;, IDM_SPPED_5
            MENUITEM &quot;&amp;Geschwindigkeit - 10&quot;, IDM_SPPED_10
            MENUITEM &quot;&amp;Geschwindigkeit - 20&quot;, IDM_SPPED_20
            MENUITEM &quot;&amp;Geschwindigkeit - 30&quot;, IDM_SPPED_30
            MENUITEM &quot;&amp;Geschwindigkeit - 45&quot;, IDM_SPPED_45

        END
/////////////////////////////////////////////////////////////////////////////////
    END
END

IDI_myIcon      ICON        &quot;meinIcon.ico&quot;
IDC_myCursor    CURSOR      &quot;meinCursor.cur&quot;
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1112488</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1112488</guid><dc:creator><![CDATA[T0bi]]></dc:creator><pubDate>Mon, 07 Aug 2006 18:32:11 GMT</pubDate></item><item><title><![CDATA[Reply to wie erstell ich ein SubMenu ??? on Mon, 07 Aug 2006 18:37:37 GMT]]></title><description><![CDATA[<p>Tipp: Statt &quot;so gehts nicht&quot; einfach schreiben: &quot;Bei diesem Versuch kriege ich die Fehlermeldung 'xyz'&quot; <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/1112492</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1112492</guid><dc:creator><![CDATA[geeky]]></dc:creator><pubDate>Mon, 07 Aug 2006 18:37:37 GMT</pubDate></item><item><title><![CDATA[Reply to wie erstell ich ein SubMenu ??? on Mon, 07 Aug 2006 18:48:30 GMT]]></title><description><![CDATA[<p>[RC Error] blabla.rc(22):<br />
[RC Fatal Error] blabla.rc(1): Compile</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1112505</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1112505</guid><dc:creator><![CDATA[T0bi]]></dc:creator><pubDate>Mon, 07 Aug 2006 18:48:30 GMT</pubDate></item><item><title><![CDATA[Reply to wie erstell ich ein SubMenu ??? on Mon, 07 Aug 2006 19:01:31 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">MENUITEM &quot;&amp;Geschwindigkeit&quot;, IDM_SPEED 
// muss vermutlich eher zu ...
POPUP &quot;&amp;Geschwindigkeit&quot;
// ...werden ;D
</code></pre>
<p>btw. vermutlich kleine Fipptehler bei &quot;IDM_SPPED[..]&quot; ?</p>
<p>Die Resourcen-Compiler geben echt mal dürftige Informationen aus <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";D"
      alt="😉"
    /><br />
Das Mingw-Ding im Bundle von Code::Blocks sagt einem zumindest noch die fehlerhafte Zeile <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";D"
      alt="😉"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1112511</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1112511</guid><dc:creator><![CDATA[geeky]]></dc:creator><pubDate>Mon, 07 Aug 2006 19:01:31 GMT</pubDate></item><item><title><![CDATA[Reply to wie erstell ich ein SubMenu ??? on Mon, 07 Aug 2006 19:00:40 GMT]]></title><description><![CDATA[<p>Wenn ich das, was du willst mit dem Ressorce-Editor vom Microsoft Visual Studio .NET 2003 zusammenschraube, bekomm' ich:</p>
<pre><code class="language-cpp">#include &quot;resource.h&quot;
#define APSTUDIO_READONLY_SYMBOLS
#include &quot;afxres.h&quot;

#undef APSTUDIO_READONLY_SYMBOLS

#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_DEU)
#ifdef _WIN32
LANGUAGE LANG_GERMAN, SUBLANG_GERMAN
#pragma code_page(1252)
#endif //_WIN32

#ifdef APSTUDIO_INVOKED

1 TEXTINCLUDE 
BEGIN
    &quot;resource.h\0&quot;
END

2 TEXTINCLUDE 
BEGIN
    &quot;#include &quot;&quot;afxres.h&quot;&quot;\r\n&quot;
    &quot;\0&quot;
END

3 TEXTINCLUDE 
BEGIN
    &quot;\r\n&quot;
    &quot;\0&quot;
END

#endif // APSTUDIO_INVOKED

#endif // Deutsch (Deutschland) resources

#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_DEA)
#ifdef _WIN32
LANGUAGE LANG_GERMAN, SUBLANG_GERMAN_AUSTRIAN
#pragma code_page(1252)
#endif //_WIN32

IDR_MENU1 MENU 
BEGIN
    POPUP &quot;&amp;Datei&quot;
    BEGIN
        MENUITEM &quot;&amp;Neu&quot;,                        IDM_NEW
        MENUITEM &quot;&amp;Öffnen&quot;,                     IDM_LOAD
        MENUITEM &quot;&amp;Speichern&quot;,                  IDM_NEW
        MENUITEM &quot;&amp;Beenden&quot;,                    IDM_LOAD
    END
    POPUP &quot;&amp;Geschwindigkeit&quot;
    BEGIN
        MENUITEM &quot;Geschwindigkeit &amp;1&quot;,          IDM_SPEED_1
        MENUITEM &quot;Geschwindigkeit &amp;5&quot;,          IDM_SPEED_5
        MENUITEM &quot;Geschwindigkeit 1&amp;0&quot;,         IDM_SPEED_10
        MENUITEM &quot;Geschwindigkeit &amp;20&quot;,         IDM_SPEED_20
        MENUITEM &quot;Geschwindigkeit &amp;30&quot;,         IDM_SPEED_30
        MENUITEM &quot;Geschwindigkeit 4&amp;5&quot;,         IDM_SPEED_45
    END
END

#endif // Deutsch (Österreich) resources
#ifndef APSTUDIO_INVOKED
#endif // not APSTUDIO_INVOKED
</code></pre>
<p>Greetz, Swordfish</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1112512</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1112512</guid><dc:creator><![CDATA[Swordfish]]></dc:creator><pubDate>Mon, 07 Aug 2006 19:00:40 GMT</pubDate></item><item><title><![CDATA[Reply to wie erstell ich ein SubMenu ??? on Mon, 07 Aug 2006 19:13:40 GMT]]></title><description><![CDATA[<p>ebn, alles was ein untermenu hat ist n POPUP und kein MENUITEM, weil ja die &quot;&amp;Geschwindigkeit&quot; an sich kein ID hat, das beim anklicken zurückgegebne wird, ist auch nicht sinn der sache...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1112518</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1112518</guid><dc:creator><![CDATA[Andrey]]></dc:creator><pubDate>Mon, 07 Aug 2006 19:13:40 GMT</pubDate></item></channel></rss>