hmm hab schon das nächste problem
habe das array mit den kompo klassen gefüllt und möchte jetzt überprüfen ob sich diese klasse welche in comp steckt im array befindet!
Code:
comps : array['a'..'z'] of TComponentClass;
Comp: TComponent;
begin
comps['a'] := Tbutton;
comps['b'] := TLabel;
...
comp:=Form1.Components[x];
if comp is (im array) then
(Comp as .(".").).Name;