<font face="verdana,sans-serif">I wanna make a suggestion:<br><br>procedure ListboxSelectionRemove(AListBox: TListbox);<br>var<br> i: Integer;<br>begin<br> i:=0;<br> AListBox.BeginUpdateBounds;;<br> while i<AListBox.Count do begin<br>
AListBox.Selected[i]:=false;<br> inc(i);<br> end;<br> AListBox.EndUpdateBounds;<br>end;<br><br>I think it'll gain some performance...<br clear="all"></font><font face="verdana, sans-serif">________________________________<br>
William de Oliveira Ferreira<br>Bacharel em Sistemas de Informação</font><br>
<br><br><div class="gmail_quote">2011/3/6 u-boot <span dir="ltr"><<a href="mailto:myabos@t-online.de">myabos@t-online.de</a>></span><br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
whether you find an event that is thrown at the right time following procedure works:<br>
<br>
procedure ListboxSelectionRemove(AListBox: TListbox);<br>
var<br>
i: Integer;<br>
begin<br>
i:=0;<br>
while i<AListBox.Count do begin<br>
AListBox.Selected[i]:=false;<br>
inc(i);<br>
end;<br>
end; <br>
Jürgen Hestermann schrieb:<div><div></div><div class="h5"><br>
<blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
Is it possible to switch off the visible cursor in a TListBox? I didn't find an option for that.<br>
I wanted the TListBox to act as a log window that shows current (and recent) activity.<br>
But the selection color makes the cursor line quite unreadable and it also makes no<br>
sense to make one line special to the others.<br>
<br>
-- <br>
_______________________________________________<br>
Lazarus mailing list<br>
<a href="mailto:Lazarus@lists.lazarus.freepascal.org" target="_blank">Lazarus@lists.lazarus.freepascal.org</a><br>
<a href="http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus" target="_blank">http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus</a><br>
</blockquote>
<br>
<br>
--<br>
_______________________________________________<br>
Lazarus mailing list<br>
<a href="mailto:Lazarus@lists.lazarus.freepascal.org" target="_blank">Lazarus@lists.lazarus.freepascal.org</a><br>
<a href="http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus" target="_blank">http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus</a><br>
</div></div></blockquote></div><br>