<?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[Numerische eingabe in Edit]]></title><description><![CDATA[<p>Hi,</p>
<p>Wie würde der Professionelle Programmiere die eingabe von alphanumerischen zeichen in einem Edit Fenster verhindern? gibts da nen bestimmt befehl für?</p>
<p>Danke</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/159633/numerische-eingabe-in-edit</link><generator>RSS for Node</generator><lastBuildDate>Tue, 11 Aug 2026 05:16:57 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/159633.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 17 Sep 2006 13:18:08 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Numerische eingabe in Edit on Sun, 17 Sep 2006 13:18:08 GMT]]></title><description><![CDATA[<p>Hi,</p>
<p>Wie würde der Professionelle Programmiere die eingabe von alphanumerischen zeichen in einem Edit Fenster verhindern? gibts da nen bestimmt befehl für?</p>
<p>Danke</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1139008</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1139008</guid><dc:creator><![CDATA[JBOpael]]></dc:creator><pubDate>Sun, 17 Sep 2006 13:18:08 GMT</pubDate></item><item><title><![CDATA[Reply to Numerische eingabe in Edit on Sun, 17 Sep 2006 13:38:20 GMT]]></title><description><![CDATA[<p>Professionelle Programmierer würden google benutzen...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1139016</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1139016</guid><dc:creator><![CDATA[GCoder]]></dc:creator><pubDate>Sun, 17 Sep 2006 13:38:20 GMT</pubDate></item><item><title><![CDATA[Reply to Numerische eingabe in Edit on Sun, 17 Sep 2006 13:56:24 GMT]]></title><description><![CDATA[<p>Schaue einmal bei dem 'OnKeyPress'Ereignis. Da setzt Du die unerwünschten Eingaben auf Key = 0;<br />
oder 'OnChange' Ereignis.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1139021</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1139021</guid><dc:creator><![CDATA[OldMan00]]></dc:creator><pubDate>Sun, 17 Sep 2006 13:56:24 GMT</pubDate></item><item><title><![CDATA[Reply to Numerische eingabe in Edit on Sun, 17 Sep 2006 14:01:20 GMT]]></title><description><![CDATA[<p>GCoder schrieb:</p>
<blockquote>
<p>Professionelle Programmierer würden google benutzen...</p>
</blockquote>
<p>Den spruch hättest du dir sparen können.</p>
<p><strong><a class="plugin-mentions-user plugin-mentions-a" href="https://www.c-plusplus.net/forum/uid/10232">@OldMan00</a></strong></p>
<p>Naja, Key auf 0 setzten soweit war ich auch, hätte ja sein können das es noch elekantere möglichkeiten gibt</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1139024</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1139024</guid><dc:creator><![CDATA[JBOpael]]></dc:creator><pubDate>Sun, 17 Sep 2006 14:01:20 GMT</pubDate></item><item><title><![CDATA[Reply to Numerische eingabe in Edit on Sun, 17 Sep 2006 14:09:01 GMT]]></title><description><![CDATA[<p>Bin nicht sicher was ein Edit-Fenster ist, solltest Du die TEdit Componente meinen, kannst Du es ja mal mit der TMaskEdit Componente versuchen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1139026</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1139026</guid><dc:creator><![CDATA[OldMan00]]></dc:creator><pubDate>Sun, 17 Sep 2006 14:09:01 GMT</pubDate></item><item><title><![CDATA[Reply to Numerische eingabe in Edit on Sun, 17 Sep 2006 14:23:06 GMT]]></title><description><![CDATA[<p>er meint '\0' und nicht 0.</p>
<p>also</p>
<pre><code class="language-cpp">if( Key &lt; '0' &amp;&amp; Key &gt; '9'  &amp;&amp;
    Key != '\r'
    Key != xx )
{
   Key == '\0'; 
}
</code></pre>
<p>Du musst nur noch gerad nachgucken wie der Ascii wert für Backspace ist und den<br />
dann anstelle von xx eintragen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1139038</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1139038</guid><dc:creator><![CDATA[d0x]]></dc:creator><pubDate>Sun, 17 Sep 2006 14:23:06 GMT</pubDate></item><item><title><![CDATA[Reply to Numerische eingabe in Edit on Sun, 17 Sep 2006 15:10:35 GMT]]></title><description><![CDATA[<p>wie kann denn ein Tastendruck gleichzeitig kleiner 0 und größer 9 sein ? und '==' ist keine Zuweisung und ich meine 0.</p>
<pre><code class="language-cpp">if ((Key &lt; 0 || Key &gt; 9) &amp;&amp; Key != VK_BACK) Key = 0;
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1139052</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1139052</guid><dc:creator><![CDATA[OldMan00]]></dc:creator><pubDate>Sun, 17 Sep 2006 15:10:35 GMT</pubDate></item><item><title><![CDATA[Reply to Numerische eingabe in Edit on Sun, 17 Sep 2006 15:55:54 GMT]]></title><description><![CDATA[<p>oups, ja, meinte auch || mit ner klammer drum. Keine zeit gehabt eben <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>
<p>hier guck ma:</p>
<p><a href="http://www.marquardtnet.info/cecke/index.htm" rel="nofollow">http://www.marquardtnet.info/cecke/index.htm</a></p>
<p>ist ne Komponente für den BCB die nur Zeichen aufnimmt.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1139083</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1139083</guid><dc:creator><![CDATA[d0x]]></dc:creator><pubDate>Sun, 17 Sep 2006 15:55:54 GMT</pubDate></item><item><title><![CDATA[Reply to Numerische eingabe in Edit on Sun, 17 Sep 2006 15:53:04 GMT]]></title><description><![CDATA[<p>Hallo</p>
<p>siehe auch <a href="http://www.bytesandmore.de/rad/index.htm?http://www.bytesandmore.de/rad/cpp/snipp/sc02025.php" rel="nofollow">hier</a>.</p>
<p>bis bald<br />
akari</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1139085</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1139085</guid><dc:creator><![CDATA[akari]]></dc:creator><pubDate>Sun, 17 Sep 2006 15:53:04 GMT</pubDate></item><item><title><![CDATA[Reply to Numerische eingabe in Edit on Tue, 26 Sep 2006 09:53:01 GMT]]></title><description><![CDATA[<p>mir ist gerade aufgefallen, als ich deinen code benutzen wollte,<br />
das du die '' vergessen hast.</p>
<pre><code class="language-cpp">if ( (Key &lt; '0' || Key &gt; '9') &amp;&amp; Key != VK_BACK ) 
   Key = 0;
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1144563</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1144563</guid><dc:creator><![CDATA[d0x]]></dc:creator><pubDate>Tue, 26 Sep 2006 09:53:01 GMT</pubDate></item><item><title><![CDATA[Reply to Numerische eingabe in Edit on Tue, 26 Sep 2006 11:18:43 GMT]]></title><description><![CDATA[<p>Ich benutze die TEnhancedEdit Komponente von hier: <a href="http://www.pics-software.de/compon.htm" rel="nofollow">http://www.pics-software.de/compon.htm</a></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1144635</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1144635</guid><dc:creator><![CDATA[Fincki]]></dc:creator><pubDate>Tue, 26 Sep 2006 11:18:43 GMT</pubDate></item></channel></rss>