<?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[If-Anweisung | bin ich blöd!?]]></title><description><![CDATA[<p>Hallo,<br />
hab da ein kleines Problem mit ner If-Anweisung, bin noch Anfänger, was mach ich im nachfolgenden Code falsch??</p>
<pre><code class="language-cpp">if (edit1-&gt;Text='bitte eingeben')
 {
 Button1-&gt;Enabled=False;
 }
 else
 {
 Button1-&gt;Enabled=True;
 }
</code></pre>
<p>bin noch an Delphi gewöhnt, aber so ähnlich müsste es doch auch gehn oder??</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/118776/if-anweisung-bin-ich-blöd</link><generator>RSS for Node</generator><lastBuildDate>Fri, 24 Jul 2026 22:14:13 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/118776.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 24 Aug 2005 09:27:58 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to If-Anweisung | bin ich blöd!? on Wed, 24 Aug 2005 09:27:58 GMT]]></title><description><![CDATA[<p>Hallo,<br />
hab da ein kleines Problem mit ner If-Anweisung, bin noch Anfänger, was mach ich im nachfolgenden Code falsch??</p>
<pre><code class="language-cpp">if (edit1-&gt;Text='bitte eingeben')
 {
 Button1-&gt;Enabled=False;
 }
 else
 {
 Button1-&gt;Enabled=True;
 }
</code></pre>
<p>bin noch an Delphi gewöhnt, aber so ähnlich müsste es doch auch gehn oder??</p>
]]></description><link>https://www.c-plusplus.net/forum/post/857388</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/857388</guid><dc:creator><![CDATA[BlueVibe]]></dc:creator><pubDate>Wed, 24 Aug 2005 09:27:58 GMT</pubDate></item><item><title><![CDATA[Reply to If-Anweisung | bin ich blöd!? on Wed, 24 Aug 2005 09:30:09 GMT]]></title><description><![CDATA[<p>Hallo</p>
<p>du solltest dir noch mal die C++ Grundlagen anschauen</p>
<pre><code class="language-cpp">if (edit1-&gt;Text == &quot;bitte eingeben&quot;)
</code></pre>
<p>bis bald<br />
akari</p>
]]></description><link>https://www.c-plusplus.net/forum/post/857389</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/857389</guid><dc:creator><![CDATA[akari]]></dc:creator><pubDate>Wed, 24 Aug 2005 09:30:09 GMT</pubDate></item><item><title><![CDATA[Reply to If-Anweisung | bin ich blöd!? on Wed, 24 Aug 2005 09:30:17 GMT]]></title><description><![CDATA[<p>Hi,<br />
schreib mal edit groß, alos Edit! Da is C++ sehr genau (nicht wie Delphi).<br />
Und schreib mal true/false klein.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/857390</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/857390</guid><dc:creator><![CDATA[apo]]></dc:creator><pubDate>Wed, 24 Aug 2005 09:30:17 GMT</pubDate></item><item><title><![CDATA[Reply to If-Anweisung | bin ich blöd!? on Wed, 24 Aug 2005 09:31:02 GMT]]></title><description><![CDATA[<p>Hallo,</p>
<p>Bei C++ macht man das eher so</p>
<pre><code class="language-cpp">if (edit1-&gt;Text == &quot;bitte eingeben&quot;)
 {
 Button1-&gt;Enabled=false;
 }
 else
 {
 Button1-&gt;Enabled=true;
 }
</code></pre>
<p>oder noch einfacher</p>
<pre><code class="language-cpp">Button1-&gt;Enabled = edit1-&gt;Text != &quot;bitte eingeben&quot;;
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/857392</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/857392</guid><dc:creator><![CDATA[Braunstein]]></dc:creator><pubDate>Wed, 24 Aug 2005 09:31:02 GMT</pubDate></item></channel></rss>