Thema: Delphi Feld (Array) von Shapes

Einzelnen Beitrag anzeigen

marabu

Registriert seit: 6. Apr 2005
10.109 Beiträge
 
#3

Re: Feld (Array) von Shapes

  Alt 30. Mai 2008, 07:04
Herzlich willkommen in der Delphi-PRAXiS, tra.

Hier nur ein paar subtile Änderungen an den Code-Zeilen von Markus:

Delphi-Quellcode:
type
  TDemoForm = class(TForm)
  // ...
  private
    shapes: array of TShape;
    procedure CreateShapes(n: Word; wc: TWinControl);
  end;

procedure TDemoForm.CreateShapes(n: Word; wc: TWinControl);
begin
  SetLength(shapes, n);
  while n > 0 do
  begin
    Dec(n);
    shapes[n] := TShape.Create(self);
    shapes[n].Parent := wc;
    // ...
  end;
end;
Freundliche Grüße
  Mit Zitat antworten Zitat