Hallo Maren!
Wenn es ein statisches Array sein soll:
BmpArray: Array[0..10] of TBitmap;
Wenn es denn dynamisch sein soll:
Delphi-Quellcode:
BmpArray: Array of TBitmap;
...
SetLength(BmpArray,Count);
Wenn es ganz komfortabel sein soll arbeite mit TList;
Delphi-Quellcode:
Var
lstBmp:TList;
Bmp:TBitmap;
Begin
lstBmp:=TList.Create;
lstBmp.Add(Pointer(Bmp)); // rein
Bmp:=TBitmap(lstBmp[i]); // raus
End;
Viel Spass damit
OLLI
Immerhin noch die Bronzemedaille ergattert