procedure TForm1.ListView1ItemClick(const Sender: TObject;
const AItem: TListViewItem);
begin
showmessage(AItem.Objects[1].Data.AsString); // Value of field
showmessage(AItem.Objects[1].Name); // Name of field
// OR
showmessage(AItem.Data['txtID'].AsString); // Value of field
end;
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)