<?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[StringGrid]]></title><description><![CDATA[<p>Hallo,</p>
<p>werde aus der Hilfe nicht schlau, im Forum habe ich auch nichts passendes gefunden.</p>
<p>Ich möchte die erste Zelle aus den selektierten Feld in ein Edit-Feld kopieren:</p>
<p>a1 a2 a3 a4</p>
<p>b1 1 2 4 5<br />
b2 x x c a</p>
<p>Wenn das Feld mit der 2 angeklickt wird, dann brauche ich in einen Edit-Feld die a2 und einen anderen Edit-Feld die b1.</p>
<p>Edit1-&gt;Text= &quot;Inhalt von a2&quot; und<br />
Edit2-&gt;Text= &quot;Inhalt von b1&quot;</p>
<p>Ist das machbar?</p>
<p>Bin für jede Hilfe dankbar.</p>
<p>Gruß</p>
<p>alk</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/197894/stringgrid</link><generator>RSS for Node</generator><lastBuildDate>Tue, 18 Aug 2026 17:35:36 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/197894.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 15 Nov 2007 19:20:27 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to StringGrid on Thu, 15 Nov 2007 19:20:27 GMT]]></title><description><![CDATA[<p>Hallo,</p>
<p>werde aus der Hilfe nicht schlau, im Forum habe ich auch nichts passendes gefunden.</p>
<p>Ich möchte die erste Zelle aus den selektierten Feld in ein Edit-Feld kopieren:</p>
<p>a1 a2 a3 a4</p>
<p>b1 1 2 4 5<br />
b2 x x c a</p>
<p>Wenn das Feld mit der 2 angeklickt wird, dann brauche ich in einen Edit-Feld die a2 und einen anderen Edit-Feld die b1.</p>
<p>Edit1-&gt;Text= &quot;Inhalt von a2&quot; und<br />
Edit2-&gt;Text= &quot;Inhalt von b1&quot;</p>
<p>Ist das machbar?</p>
<p>Bin für jede Hilfe dankbar.</p>
<p>Gruß</p>
<p>alk</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1403938</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1403938</guid><dc:creator><![CDATA[alkalk]]></dc:creator><pubDate>Thu, 15 Nov 2007 19:20:27 GMT</pubDate></item><item><title><![CDATA[Reply to StringGrid on Thu, 15 Nov 2007 19:40:03 GMT]]></title><description><![CDATA[<p>Hat sich erledigt, ist so einfach</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1403954</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1403954</guid><dc:creator><![CDATA[alkalka]]></dc:creator><pubDate>Thu, 15 Nov 2007 19:40:03 GMT</pubDate></item><item><title><![CDATA[Reply to StringGrid on Thu, 15 Nov 2007 19:46:19 GMT]]></title><description><![CDATA[<blockquote>
<p>Ich möchte die erste Zelle aus den selektierten Feld in ein Edit-Feld kopieren:</p>
</blockquote>
<p>???<br />
Du kannst einzelne Zellen selektieren oder aber eine ganze Zeile.</p>
<pre><code class="language-cpp">void __fastcall TForm1::StringGrid1SelectCell(TObject *Sender, int ACol,
      int ARow, bool &amp;CanSelect)
{
   Edit1-&gt;Text = StringGrid1-&gt;Cells [ACol][0];
   Edit2-&gt;Text = StringGrid1-&gt;Cells [0][ARow];
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1403958</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1403958</guid><dc:creator><![CDATA[riddle]]></dc:creator><pubDate>Thu, 15 Nov 2007 19:46:19 GMT</pubDate></item><item><title><![CDATA[Reply to StringGrid on Fri, 16 Nov 2007 17:34:06 GMT]]></title><description><![CDATA[<p>Hab ich auch so gemacht.</p>
<p>Aber trotzdem vielen Dank</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1404588</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1404588</guid><dc:creator><![CDATA[alkalk]]></dc:creator><pubDate>Fri, 16 Nov 2007 17:34:06 GMT</pubDate></item></channel></rss>