<?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[Drop-Down]]></title><description><![CDATA[<p>Hi Leute!</p>
<p>Ich hoffe ihr könnt mir helfen.</p>
<p>Ich habe eine Combobox und möchte aber erst wenn ich das Drop-Down-Menu öffne meine Strings in die Box einlesen.</p>
<p>Leider hab ich mal wieder kein Plan wie das gehen soll.</p>
<p>cu PSolid</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/5821/drop-down</link><generator>RSS for Node</generator><lastBuildDate>Sun, 12 Apr 2026 22:15:53 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/5821.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 20 May 2003 07:30:00 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Drop-Down on Tue, 20 May 2003 07:30:00 GMT]]></title><description><![CDATA[<p>Hi Leute!</p>
<p>Ich hoffe ihr könnt mir helfen.</p>
<p>Ich habe eine Combobox und möchte aber erst wenn ich das Drop-Down-Menu öffne meine Strings in die Box einlesen.</p>
<p>Leider hab ich mal wieder kein Plan wie das gehen soll.</p>
<p>cu PSolid</p>
]]></description><link>https://www.c-plusplus.net/forum/post/28262</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/28262</guid><dc:creator><![CDATA[PSolid]]></dc:creator><pubDate>Tue, 20 May 2003 07:30:00 GMT</pubDate></item><item><title><![CDATA[Reply to Drop-Down on Tue, 20 May 2003 07:51:00 GMT]]></title><description><![CDATA[<p>Keine Ahnung ob das funktioniert aber versuche es doch mal mit</p>
<p>OnDeineCombo.Open()<br />
{<br />
bla...<br />
}</p>
]]></description><link>https://www.c-plusplus.net/forum/post/28263</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/28263</guid><dc:creator><![CDATA[ReneS]]></dc:creator><pubDate>Tue, 20 May 2003 07:51:00 GMT</pubDate></item><item><title><![CDATA[Reply to Drop-Down on Tue, 20 May 2003 08:07:00 GMT]]></title><description><![CDATA[<p>Hallo !</p>
<p>Für das Aufklappen der ComboBox-Liste gibt es die Nachricht CBN_DROPDOWN.<br />
In der MessageMap:</p>
<pre><code class="language-cpp">ON_CBN_DROPDOWN(IDC_COMBO1, OnDropdownCombo1)
</code></pre>
<p>...und in der zugehörigen Funktion die Listeneinträge einfügen:</p>
<pre><code class="language-cpp">void CComboBoxDlg::OnDropdownCombo1() 
{
    m_CBBox.AddString(&quot;1&quot;);
    m_CBBox.AddString(&quot;2&quot;);
    m_CBBox.AddString(&quot;3&quot;);
}
</code></pre>
<p>Tschüss</p>
]]></description><link>https://www.c-plusplus.net/forum/post/28264</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/28264</guid><dc:creator><![CDATA[isabeau]]></dc:creator><pubDate>Tue, 20 May 2003 08:07:00 GMT</pubDate></item><item><title><![CDATA[Reply to Drop-Down on Tue, 20 May 2003 08:16:00 GMT]]></title><description><![CDATA[<p>THX isabeau hat bestens geklappt!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/28265</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/28265</guid><dc:creator><![CDATA[PSolid]]></dc:creator><pubDate>Tue, 20 May 2003 08:16:00 GMT</pubDate></item></channel></rss>