<?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[Auswahlbalken beim Listview setzen]]></title><description><![CDATA[<p>Hi Leute,</p>
<p>wie die Überschrift schon zeigt, möchte ich in einem Listview (vsReport) den <em>blauen</em> (nicht den grauen) Auswahlbalken nicht durch Klick, sondern im Code setzen. Wie kann ich das veranstalten?</p>
<p>MfG F98.</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/140495/auswahlbalken-beim-listview-setzen</link><generator>RSS for Node</generator><lastBuildDate>Mon, 03 Aug 2026 16:18:59 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/140495.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 15 Mar 2006 11:59:01 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Auswahlbalken beim Listview setzen on Wed, 15 Mar 2006 12:07:49 GMT]]></title><description><![CDATA[<p>Hi Leute,</p>
<p>wie die Überschrift schon zeigt, möchte ich in einem Listview (vsReport) den <em>blauen</em> (nicht den grauen) Auswahlbalken nicht durch Klick, sondern im Code setzen. Wie kann ich das veranstalten?</p>
<p>MfG F98.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1016624</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1016624</guid><dc:creator><![CDATA[F98]]></dc:creator><pubDate>Wed, 15 Mar 2006 12:07:49 GMT</pubDate></item><item><title><![CDATA[Reply to Auswahlbalken beim Listview setzen on Wed, 15 Mar 2006 12:12:17 GMT]]></title><description><![CDATA[<p>meinst du</p>
<pre><code class="language-cpp">LV-&gt;ItemIndex = 1;
   LV-&gt;SetFocus();
</code></pre>
<p>?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1016630</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1016630</guid><dc:creator><![CDATA[BigNeal]]></dc:creator><pubDate>Wed, 15 Mar 2006 12:12:17 GMT</pubDate></item><item><title><![CDATA[Reply to Auswahlbalken beim Listview setzen on Wed, 15 Mar 2006 14:18:02 GMT]]></title><description><![CDATA[<p>probiere es so:</p>
<pre><code class="language-cpp">//---------------------------------------------------------------------------
// Vertikalen Scroll (zum gewählten Element) in einer Listview durchführen
// -&gt; Selection ist der Zeilenindex
//---------------------------------------------------------------------------
void SetListViewVerticalPosition(TListView *ListView, int Selection)
{
  if (Selection != -1)
  {
    ListView-&gt;Selected          = ListView-&gt;Items-&gt;Item[Selection];
    ListView-&gt;Selected-&gt;Focused = true;

    ListView-&gt;Selected-&gt;MakeVisible(false);
  }
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1016771</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1016771</guid><dc:creator><![CDATA[Sunday]]></dc:creator><pubDate>Wed, 15 Mar 2006 14:18:02 GMT</pubDate></item><item><title><![CDATA[Reply to Auswahlbalken beim Listview setzen on Thu, 16 Mar 2006 10:06:52 GMT]]></title><description><![CDATA[<p>Danke für die Antworten, das Ganze funktioniert allerdings nur, wenn das LV den Focus (SetFocus) hat.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1017372</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1017372</guid><dc:creator><![CDATA[F98]]></dc:creator><pubDate>Thu, 16 Mar 2006 10:06:52 GMT</pubDate></item><item><title><![CDATA[Reply to Auswahlbalken beim Listview setzen on Thu, 16 Mar 2006 10:13:38 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">ListView1-&gt;RowSelect = true;
   ListView1-&gt;HideSelection = false;
   ListView1-&gt;ItemIndex = 1;
</code></pre>
<p>so?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1017377</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1017377</guid><dc:creator><![CDATA[BigNeal]]></dc:creator><pubDate>Thu, 16 Mar 2006 10:13:38 GMT</pubDate></item></channel></rss>