Jak znaleźć np. Label który ma np. Left:=120 lub Image który ma Picture:='coś.bmp' ?
0
0
Na picture sobie musisz sam przerobic .. mnie sie juz nie chce :)
Btw: to jest chyba w jakims faq.
var
x:integer;
begin
for x:=0 to componentcount-1 do
if (components[x] is TLabel) and (TLabel(components[x]).Left = 120) then
TLabel(Components[x]).Caption := 'Mamy skurczysyna';
end;--Pozdrawiam {hello}
Tomasz K.