Registriert seit: 1. Apr 2005
Ort: Bad Tölz
4.149 Beiträge
Delphi 2006 Professional
|
Re: Create Destroy Problem
25. Nov 2006, 16:34
Delphi-Quellcode:
var shapes: array of TShape; //so hast du deine Shapes immer schön an der Hand
setlength(shapes,1);
shapes[0] := TShape.Create(self);
shapes[0].Parent := self; //wichtig!
shapes[0].Left := ....;
Lukas Erlacher Suche Grafiktablett. Spenden/Gebrauchtangebote willkommen.
Gotteskrieger gesucht!
For it is the chief characteristic of the religion of science that it works. - Isaac Asimov, Foundation I, Buch 1
|