<?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[ComboBox]]></title><description><![CDATA[<p>hallo leute...</p>
<p>wie kann ich die einträge einer combobox abfragen welches gewählt wurde???</p>
<p>mfg</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/169830/combobox</link><generator>RSS for Node</generator><lastBuildDate>Sat, 15 Aug 2026 07:13:45 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/169830.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 09 Jan 2007 12:33:20 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to ComboBox on Tue, 09 Jan 2007 12:33:20 GMT]]></title><description><![CDATA[<p>hallo leute...</p>
<p>wie kann ich die einträge einer combobox abfragen welches gewählt wurde???</p>
<p>mfg</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1206299</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1206299</guid><dc:creator><![CDATA[mborner]]></dc:creator><pubDate>Tue, 09 Jan 2007 12:33:20 GMT</pubDate></item><item><title><![CDATA[Reply to ComboBox on Tue, 09 Jan 2007 12:48:48 GMT]]></title><description><![CDATA[<p>Hallo</p>
<p>siehe <em>TComboBox::ItemIndex</em></p>
<p>bis bald<br />
akari</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1206303</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1206303</guid><dc:creator><![CDATA[akari]]></dc:creator><pubDate>Tue, 09 Jan 2007 12:48:48 GMT</pubDate></item><item><title><![CDATA[Reply to ComboBox on Tue, 09 Jan 2007 13:18:33 GMT]]></title><description><![CDATA[<p>es muss doch noch eine andere möglichkeit geben...<br />
hier mein problem:</p>
<p>if (ComboBox1-&gt;...)<br />
{<br />
Application-&gt;MessageBox(&quot;250 ms&quot;, &quot;Test&quot;, MB_OK);<br />
}</p>
<p>in der if anweisung soll abgefragt werden ob der erste eintrag der combobox gewählt wurde... wenn ja so die messagebox aufgerufen werden...</p>
<p>mfg</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1206318</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1206318</guid><dc:creator><![CDATA[mborner]]></dc:creator><pubDate>Tue, 09 Jan 2007 13:18:33 GMT</pubDate></item><item><title><![CDATA[Reply to ComboBox on Tue, 09 Jan 2007 13:26:07 GMT]]></title><description><![CDATA[<p>Hallo</p>
<p>wo ist das Problem?</p>
<pre><code class="language-cpp">if (ComboBox1-&gt;ItemIndex == 0)
{
  Application-&gt;MessageBox(&quot;250 ms&quot;, &quot;Test&quot;, MB_OK);
}
</code></pre>
<p>bis bald<br />
akari</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1206323</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1206323</guid><dc:creator><![CDATA[akari]]></dc:creator><pubDate>Tue, 09 Jan 2007 13:26:07 GMT</pubDate></item><item><title><![CDATA[Reply to ComboBox on Tue, 09 Jan 2007 13:30:04 GMT]]></title><description><![CDATA[<p>vielen dank...</p>
<p>ist das erste mal für mich, dass ich mit c++ und borland arbeite...</p>
<p>mfg</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1206326</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1206326</guid><dc:creator><![CDATA[mborner]]></dc:creator><pubDate>Tue, 09 Jan 2007 13:30:04 GMT</pubDate></item><item><title><![CDATA[Reply to ComboBox on Fri, 30 Mar 2007 08:48:07 GMT]]></title><description><![CDATA[<p>Ich habe folgendes Problem... Ich habe eine combobox mit 2 Einträgen (LAN, WLAN). Wenn ich in den Code für die comboBox meinen Befehl rein schreibe dann gilt dieser für LAN als auch für WLAN. Wie kann ich diesen befehl ausschließlich nur für LAN bestimmen???</p>
<p>bin schon stunden lang am suchen... finde aber nichts was mit weiter hilft.</p>
<pre><code>private: System::Void comboBox1_SelectedIndexChanged(System::Object^  sender, System::EventArgs^  e) {
				 System::Diagnostics::Process::Start(&quot;notepad&quot;);
			 }
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1255823</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1255823</guid><dc:creator><![CDATA[Philip16787]]></dc:creator><pubDate>Fri, 30 Mar 2007 08:48:07 GMT</pubDate></item><item><title><![CDATA[Reply to ComboBox on Fri, 30 Mar 2007 10:13:15 GMT]]></title><description><![CDATA[<p>akari schrieb:</p>
<blockquote>
<p>Hallo</p>
<p>wo ist das Problem?</p>
<pre><code class="language-cpp">if (ComboBox1-&gt;ItemIndex == 0)
{
  Application-&gt;MessageBox(&quot;250 ms&quot;, &quot;Test&quot;, MB_OK);
}
</code></pre>
<p>bis bald<br />
akari</p>
</blockquote>
<p>oder</p>
<pre><code class="language-cpp">if (ComboBox1-&gt;Text == &quot;LAN&quot;)
{
   doSomething();
}
</code></pre>
<p>mfg, Micha</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1255857</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1255857</guid><dc:creator><![CDATA[[[global:guest]]]]></dc:creator><pubDate>Fri, 30 Mar 2007 10:13:15 GMT</pubDate></item><item><title><![CDATA[Reply to ComboBox on Fri, 30 Mar 2007 10:00:50 GMT]]></title><description><![CDATA[<p>so habe mal deinen vorschlag ausprobiert...</p>
<pre><code class="language-cpp">private: System::Void comboBox1_SelectedIndexChanged(System::Object^  sender, System::EventArgs^  e) {

if (ComboBox1-&gt;Text == &quot;LAN&quot;) 
{ 
   System::Diagnostics::Process::Start(&quot;notepad&quot;);	
} 
			 }
</code></pre>
<p>bekomme aber folgende Fehlermeldung:</p>
<p>Fehler 1 error C2065: 'ComboBox1': nichtdeklarierter Bezeichner c:\dokumente und einstellungen\kossmanp\eigene dateien\visual studio 2005\projects\forms\forms\Form1.h 87</p>
<p>Fehler 2 error C2227: Links von &quot;-&gt;Text&quot; muss sich ein Zeiger auf Klassen-/Struktur-/Union-/generischen Typ befinden. c:\dokumente und einstellungen\kossmanp\eigene dateien\visual studio 2005\projects\forms\forms\Form1.h 87</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1255873</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1255873</guid><dc:creator><![CDATA[Philip16787]]></dc:creator><pubDate>Fri, 30 Mar 2007 10:00:50 GMT</pubDate></item><item><title><![CDATA[Reply to ComboBox on Fri, 30 Mar 2007 10:08:56 GMT]]></title><description><![CDATA[<p>mal davon abgesehen, daß das hier das VCL-Forum für Borland C++ und nicht für Visual Studio 2005 ist:</p>
<p>Wie heißt denn deine ComboBox? Vielleicht klappts ja mit der richtigen Groß-/Kleinschreibung</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1255880</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1255880</guid><dc:creator><![CDATA[Linnea]]></dc:creator><pubDate>Fri, 30 Mar 2007 10:08:56 GMT</pubDate></item><item><title><![CDATA[Reply to ComboBox on Fri, 30 Mar 2007 10:13:35 GMT]]></title><description><![CDATA[<p>Danach sucht man schon gar nicht mehr...<br />
vielen dank...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1255883</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1255883</guid><dc:creator><![CDATA[Philip16787]]></dc:creator><pubDate>Fri, 30 Mar 2007 10:13:35 GMT</pubDate></item></channel></rss>