Hallo
ich möchte Images in Scrollbox at Run Time erstellen (Stück für Stück)
Ich möchte aber die erstellte Images hintereinander in eine Linie horizontal sortieren
Wenn ich eine Image lösche, dann soll auch die Images erneut sortiert werden
Delphi-Quellcode:
begin
with TImage.Create(self) do begin
Parent := ScrollBox1;
Width := 50;
Height := 50;
Picture.Bitmap.LoadFromFile('C:\test.bmp');
Top := 10;
Left := 10;
BringToFront;
end;
end;
Das Problem ist ab Image2
Image2.left soll nun nicht 10 sondern 10+image1.width
Kann jemand mir helfen ?