Registriert seit: 27. Aug 2003
Ort: Ennepetal
440 Beiträge
Delphi 2005 Personal
|
Re: Dynamisch erzeugtes TImage nicht sichtbar
1. Okt 2003, 17:21
Delphi-Quellcode:
with Gegner[i] do
begin
Picture.LoadFromFile('C:\Bild.bmp');
left := random(Form1.Width);
top := random (form1.Height);
height := 32;
width:= 32;
Visible := true;
Show;
Parent := form1; //Bzw Mainform
end;
Das klappt bei mir wunderbar....
|