hi all
I want to update values in a TListView. I tryed this
...
lvProcess : TListView;
liEdit : TlistItem;
...
liEdit:=lvProcess.Items.Item[1];
liEdit.Caption:='11';
liEdit.SubItems.ValueFromIndex[0]:='22';
liEdit.SubItems.ValueFromIndex[1]:='33';
...
this should do what I want, but after this, the values of the subitems are this ones '=22' and '=33' I don't want the equal character to be added.
Can anyone help me? I don't know if this is the right way to edit/update a listitem
thanks