<div dir="ltr"><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Thu, Nov 17, 2022 at 6:39 AM Michael Van Canneyt via lazarus <<a href="mailto:lazarus@lists.lazarus-ide.org">lazarus@lists.lazarus-ide.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><br>
<br>
On Thu, 17 Nov 2022, Aruna Hewapathirane via lazarus wrote:<br>
<br>
> Hello Everyone,<br>
><br>
> I managed to get the TListView to work after studying the example Sven<br>
> sent. You can see a screenshot here:  <a href="https://pasteboard.co/inCtdrOWwAvV.png" rel="noreferrer" target="_blank">https://pasteboard.co/inCtdrOWwAvV.png</a><br>
><br>
> How do I set the caption/Title for each column header? How do I set column<br>
> header 1 to 'Country' and column header 2 to 'Region' please?<br>
<br>
Var<br>
   aCol : TListviewColumn;<br>
<br>
begin<br>
   aCol:=Listview1.Columns.Add;<br>
   aCol.Caption:='Country';<br>
   aCol:=Listview1.Columns.Add;<br>
   aCol.Caption:='Region';<br>
end;<br></blockquote><div><br></div><div>Ah.. I am now beginning to understand. So you get the column into a variable then use the variable to access and <br></div><div>set any properties?   Thank you so much for your time Michael. <br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
<br>
<br>
><br>
> Is it possible to sort? By each column ? If so how?<br>
<br>
It is possible to sort:<br>
<br>
   Listview1.SortColumn:=0; // change to column you need<br>
   Listview1.SortDirection:=sdAscending;<br>
   Listview1.Sort;<br></blockquote><div><br></div><div>Wow this is sweet! <br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
<br>
Michael<br></blockquote><div><br></div><div>I just want to say this has to be the fastest support I have ever received and always with a response that<div>is a concrete solution effectively diminishing the barriers for entry for newcomers. I am extremely grateful and humbled.</div><br>Thank you!</div><div><br></div><div> Aruna <br></div><br><div><br></div><div><br></div><div><br></div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
_______________________________________________<br>
lazarus mailing list<br>
<a href="mailto:lazarus@lists.lazarus-ide.org" target="_blank">lazarus@lists.lazarus-ide.org</a><br>
<a href="https://lists.lazarus-ide.org/listinfo/lazarus" rel="noreferrer" target="_blank">https://lists.lazarus-ide.org/listinfo/lazarus</a><br>
</blockquote></div></div>