Das erste Mal, dass mir die SuFu nicht weiter gebracht hat..
Ich habe das Problem, dass ich das gleiche Image mit einer Schleife in ein Array speichern will. Allerdings wird das Image immer weitergeschoben und scheint nur im letzten Arrayfeld auf..
Delphi-Quellcode:
for x_:=0 to 30 do
for y_:=0 to 50 do
begin
bmpfeld[x_,y_].Bild:=form1.Image4;
bmpfeld[x_,y_].Bild.Top:=(y_*7+41);
bmpfeld[x_,y_].Bild.Left:=(x_*7+101);
bmpfeld[x_,y_].Bild.BringToFront;
bmpfeld[x_,y_].Bild.Visible:=true;
end;
Schonmal danke für die Hilfe