<?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[Sonderzeichen]]></title><description><![CDATA[<p>Hi,</p>
<p>Wie bekomme ich es hin sonderzeichen abzufragen??( öäü+#´ß etc.)</p>
<pre><code class="language-cpp">void __fastcall TForm8::Form1KeyDown(TObject *Sender, WORD &amp;Key,
      TShiftState Shift)
{
        if(Key=='#')   
             Label1-&gt;Caption=&quot;Test&quot;;
}
</code></pre>
<p>Die Bedingung wird nicht war. Aber warum nicht?</p>
<p>Danke schonmal.</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/148489/sonderzeichen</link><generator>RSS for Node</generator><lastBuildDate>Thu, 06 Aug 2026 15:49:30 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/148489.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 27 May 2006 10:22:43 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Sonderzeichen on Sat, 27 May 2006 10:22:43 GMT]]></title><description><![CDATA[<p>Hi,</p>
<p>Wie bekomme ich es hin sonderzeichen abzufragen??( öäü+#´ß etc.)</p>
<pre><code class="language-cpp">void __fastcall TForm8::Form1KeyDown(TObject *Sender, WORD &amp;Key,
      TShiftState Shift)
{
        if(Key=='#')   
             Label1-&gt;Caption=&quot;Test&quot;;
}
</code></pre>
<p>Die Bedingung wird nicht war. Aber warum nicht?</p>
<p>Danke schonmal.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1065985</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1065985</guid><dc:creator><![CDATA[JBOpael]]></dc:creator><pubDate>Sat, 27 May 2006 10:22:43 GMT</pubDate></item><item><title><![CDATA[Reply to Sonderzeichen on Sat, 27 May 2006 10:37:12 GMT]]></title><description><![CDATA[<p>Hallo</p>
<p>warum das nicht geht kann ich auch nicht sagen, aber es hilft wenn du statt dem Zeichen selber desen Ascii-Wert angibst :</p>
<pre><code class="language-cpp">if(Key==191)  
             Label1-&gt;Caption=&quot;Test&quot;;
</code></pre>
<p>bis bald<br />
akari</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1065992</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1065992</guid><dc:creator><![CDATA[akari]]></dc:creator><pubDate>Sat, 27 May 2006 10:37:12 GMT</pubDate></item><item><title><![CDATA[Reply to Sonderzeichen on Sat, 27 May 2006 10:41:28 GMT]]></title><description><![CDATA[<p>Das hab ich auch probiert.<br />
geht genau so wenig. (zumindestens bei mir)</p>
<p>Aber das problem hab ich echt nur mit diesen zeichen ,.-öä#ü+ß´^<br />
Alle anderen kann ich normal abfragen (oder über VK)</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1065994</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1065994</guid><dc:creator><![CDATA[JBOpael]]></dc:creator><pubDate>Sat, 27 May 2006 10:41:28 GMT</pubDate></item><item><title><![CDATA[Reply to Sonderzeichen on Sat, 27 May 2006 11:14:28 GMT]]></title><description><![CDATA[<p>Hallo</p>
<p>Du kannst nur ANSI-Zeichen (also bis 128) überhaupt in Klartext in den Quellcode schrieben, alle anderen müßen umschrieben werden. Allerdings läuft die Umschreibung mit dem ASCII-Wert bei mir sehr wohl.</p>
<p>bis bald<br />
akari</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1066017</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1066017</guid><dc:creator><![CDATA[akari]]></dc:creator><pubDate>Sat, 27 May 2006 11:14:28 GMT</pubDate></item><item><title><![CDATA[Reply to Sonderzeichen on Sat, 27 May 2006 19:18:19 GMT]]></title><description><![CDATA[<p>vielleicht hilft dir die ANSI tabelle weiter. hatte mir bei den umlauten auch weiter geholfen.</p>
<p>Löschen würde dann so heißten : &quot;L\xF6schen&quot;</p>
<p>hier mal der link zur tabelle: <a href="http://www.bethanienkirche-leipzig.de/links/allgemein/edv/char/zeichentabelle.html" rel="nofollow">http://www.bethanienkirche-leipzig.de/links/allgemein/edv/char/zeichentabelle.html</a></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1066356</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1066356</guid><dc:creator><![CDATA[Avalon]]></dc:creator><pubDate>Sat, 27 May 2006 19:18:19 GMT</pubDate></item></channel></rss>