Moin Daniel,
Zitat von
danielA:
Da ich nicht weiß wie viele Formulare in der künftigen Anwendung existieren werden,
Wenn Du beim Erzeugen eines Formulares als Owner das Application-Objekt angibst, kannst Du einfach mit
Delphi-Quellcode:
for i := 0 to Application.ComponentCount-1 do begin
if Application.Components[i] is TForm then ...
end;
durch die gesamten Formulare durchgehen, und ansprechen.