Im OnCreate-Ereignis habe ich hinzugefügt:
Delphi-Quellcode:
for i:=low(explosion) to high(explosion) do
begin
explosion[i].LoadFromResourceName(hInstance,'exp'+IntToStr(i));
end;
Sowie im TExplosionTimer habe ich
Image1.Picture.Bitmap.LoadFromResourceName(hInstance,'exp'+IntToStr(expindex));
durch
image1.Picture.Bitmap.Assign(explosion[expindex]);
ersetzt. Funktioniert im OnCreate schon nicht. Explosion ist ein Array[0..12] of TBitmap. Ist das nicht ansatzweise richtig?