Posts by jcBuss • 1 point
2 posts
-
0
votes2
answers2393
viewsA: How to customize Listview at runtime?
Did he find the text area of the item? Try wearing something like: ListView1.Items[0].Objects.TextObject.Text := BindSourceDB.DataSet.FieldByName('IDADE').AsString;
-
0
votes3
answers2828
viewsA: How to change the color of a Text from a Listview?
procedure TForm1.Button1Click(Sender: TObject); var i: Integer; begin ListView1.BeginUpdate; for i := 0 to ListView1.ItemCount - 1…