Hallo,
also das verwende ich in einen Program und es geht:
Delphi-Quellcode:
...
linie: Array [1..50] of TImage;
i: byte;
...
// Erstelle Linien
for i:=1 to 50 do
begin
linie[i]:=TImage.Create(Self);
linie[i].Parent := Self;
linie[i].Visible:=true;
linie[i].Picture:=img_rot_links.Picture;
linie[i].Stretch:=true;
end;
Also statt Form1 habe ich Self, und visible setze ich auf true, und statt height und width einfach stretch auf true,
probier das mal so.