Hmmm... Also es liegt im Create (Wenns dir hilft)
Und bisher gings auch immer ohne:
Delphi-Quellcode:
// Map neuzeichnen
Map.Free;
Map := TImage.Create(Self);
Map.Parent := FFreggels;
Map.Width := StrToInt(Karte[0]) * 32;
Map.Left := (Screen.Width - 125) div 2 - Map.Width div 2;
Map.Height := StrToInt(Karte[1]) * 32;
Map.Top := Screen.Height div 2 - Map.Height div 2;
Map.BringToFront;
Map.Cursor := crNone;