Thema: Delphi objekt hinzufügen

Einzelnen Beitrag anzeigen

jokerfacehro
(Gast)

n/a Beiträge
 
#1

objekt hinzufügen

  Alt 19. Mai 2005, 21:22
Heyho !

ich brauche eine flexible anzahl von panels, deshalb will ich diese
nicht manuell einfügen sondern per schleife. Hab das auch versucht.
Jedoch kam ich auf keine Lösung.

Delphi-Quellcode:
var S:TPanel;
...
  S.Create(self);
  S.Width := 20;
  S.Height := 20;
  S.Left := 100;
  S.Top := 100;
  S.Caption := 1;
  s.Font.Color := clSilver;
  S.Name := 'field';
  S.Parent := Panel1;

Fehler: access violation
  Mit Zitat antworten Zitat