Ich habs gerade noch mal ausprobiert.
FindComponent findet nicht nur die direkt, sondern alle irgendwie untergeordneten Objekte.
Damit kannst du einfach schreiben:
Delphi-Quellcode:
var lst: TListView;
//...
lst := MeinForm.FindComponent('ListView' + name) as TListView;
if lst <> nil then
lst.clear;
"Electricity is actually made up of extremely tiny particles called electrons, that you cannot see with the naked eye unless you have been drinking." (Dave Barry)