I have the following function to clean the common edits :
for I := 0 to componentCount-1 do
begin
If(components [i] is Tedit) then
Tedit(components[i]).Text := '';
end;
But I have edits created at runtime, and would like them to "disappear" when the person clicks the clean button. How can I include this in my role?