Du könntest es so probieren (ungetestet). Du brauchst eine Variable vom Typ boolean (hier "status")
Delphi-Quellcode:
for i:=0 to 585 do begin
status:=TTimer(FindComponent('timer'+inttostr(i)).enabled;
if status then showmessage('Timer'+inttostr(i)+': aktiv')
else showmessage('Timer'+inttostr(i)+': inaktiv');
end;