<?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[Edit onChange unterbinden]]></title><description><![CDATA[<p>Hallo,</p>
<p>wie kann ich das onChange-Ereignis unterbinden wenn ich über eine andere Funktion etwas in ein Edit-Feld schreiben will?</p>
<p>Gruß</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/170079/edit-onchange-unterbinden</link><generator>RSS for Node</generator><lastBuildDate>Thu, 13 Aug 2026 20:01:33 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/170079.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 11 Jan 2007 14:25:55 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Edit onChange unterbinden on Thu, 11 Jan 2007 14:25:55 GMT]]></title><description><![CDATA[<p>Hallo,</p>
<p>wie kann ich das onChange-Ereignis unterbinden wenn ich über eine andere Funktion etwas in ein Edit-Feld schreiben will?</p>
<p>Gruß</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1207975</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1207975</guid><dc:creator><![CDATA[daniel23]]></dc:creator><pubDate>Thu, 11 Jan 2007 14:25:55 GMT</pubDate></item><item><title><![CDATA[Reply to Edit onChange unterbinden on Thu, 11 Jan 2007 14:42:00 GMT]]></title><description><![CDATA[<p>warum willst das unterbinden?macht ja so nix!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1207988</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1207988</guid><dc:creator><![CDATA[ser1al_ausgeloggt]]></dc:creator><pubDate>Thu, 11 Jan 2007 14:42:00 GMT</pubDate></item><item><title><![CDATA[Reply to Edit onChange unterbinden on Thu, 11 Jan 2007 14:53:18 GMT]]></title><description><![CDATA[<p>bei mir steht ja was in onChange also wenn ich was in ein Edit schreibe (Edit1-&gt;Text = &quot;Hallo&quot;; ) dann wird auch automatisch onChange aufgerufen und das soll nicht passieren.</p>
<p>Gruß</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1207996</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1207996</guid><dc:creator><![CDATA[daniel23]]></dc:creator><pubDate>Thu, 11 Jan 2007 14:53:18 GMT</pubDate></item><item><title><![CDATA[Reply to Edit onChange unterbinden on Thu, 11 Jan 2007 15:04:26 GMT]]></title><description><![CDATA[<p>Ich halte es zwar für schlampiges Design, die OnChange unterdrücken zu müssen, aber so würde es funktionieren:</p>
<pre><code class="language-cpp">Edit1-&gt;OnChange = NULL;
Edit1-&gt;Text = &quot;xxx&quot;;
Edit1-&gt;OnChange = Edit1Change;
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1208009</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1208009</guid><dc:creator><![CDATA[[[global:guest]]]]></dc:creator><pubDate>Thu, 11 Jan 2007 15:04:26 GMT</pubDate></item><item><title><![CDATA[Reply to Edit onChange unterbinden on Thu, 11 Jan 2007 15:27:21 GMT]]></title><description><![CDATA[<p>Eine Alternative wäre eine bool Variable in der entsprechenden Form, mit der man die Abarbeitung in der Funktion umschalten kann.<br />
In das OnChange-Ereignis kommt dann sowas</p>
<pre><code class="language-cpp">void __fastcall TForm1::Edit1Change(TObject *Sender)
{
  if( AllowChange )
  {
// Hier dein Code
  }
}
</code></pre>
<p>OnChange wird dann zwar aufgerufen aber nicht abgearbeitet. Sowas kann man auch in anderen Events anwenden.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1208031</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1208031</guid><dc:creator><![CDATA[Braunstein]]></dc:creator><pubDate>Thu, 11 Jan 2007 15:27:21 GMT</pubDate></item><item><title><![CDATA[Reply to Edit onChange unterbinden on Thu, 11 Jan 2007 18:45:37 GMT]]></title><description><![CDATA[<p>Hallo</p>
<p>ok, ich danke euch für eure Hilfe.</p>
<p>Gruß</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1208178</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1208178</guid><dc:creator><![CDATA[daniel23]]></dc:creator><pubDate>Thu, 11 Jan 2007 18:45:37 GMT</pubDate></item></channel></rss>