Guten Tag,
wollte ein Shape erzeugen. Aber selbst erzeugen
Delphi-Quellcode:
Shape := TShape.create(Form1) ;
Shape.Top := 10 ;
Shape.Left := 10 ;
Shape.Width := 10 ;
Shape.Height := 10 ;
Shape.Visible := TRUE ;
Shape.Enabled := true ;
Shape.Shape := stRectangle ;
Shape.Pen.Color := clred ;
Shape.Brush.Color := clred ;
Shape.Show ;
das problem ist , dass dieses shape nicht angezeigt wird .. warum
ß0??