![]() |
array of TShape
ich weiß ihr werdet mich ehr oder weniger für dumm erklären, aber ich hab keine ahnung wie ich die erstelltetn Shapes anzeigen soll, wenn ich sie als arry erstellt hab.
|
Re: array of TShape
Herzlich willkommen in der DP
Wenn list dein array ist, dann einfach per
Delphi-Quellcode:
Wie sieht denn dein Code bis jetzt aus?
list[0].visible:= true;
list[0].top:= 45; |
Re: array of TShape
begin
for i:=1 to 47 do begin SKreis[i].visible:=true; SKreis[i].width:=30; Skreis[i].Height:=30; SKreis[i].brush.color:=clred; SKreis[i].Top:=i; SKreis[i].left:=i; end; end; das problem ist jetzt nur, dass wenn ich mein prog ausführe, das prog abstürzt, sobald ich die prozedur starte. |
Re: array of TShape
:party: :party: :party: HERZLICH WILLKOMMEN IN DER DELPHI-PRAXIS :party: :party: :party:
Zitat:
Delphi-Quellcode:
2. Hast du wahrscheinlich vergessen die Shapes zu erzeugen, am anfang muss
SKreis[i].SetBounds(i,i,30,30)
Delphi-Quellcode:
stehen
SKreis[i]:= TShape.Create;
Also am ende dann so:
Delphi-Quellcode:
for i:=1 to 47 do
begin SKreis[i]:= TShape.Create; SKreis[i].SetBounds(i,i,30,30); SKreis[i].brush.color:=clred; end; |
Re: array of TShape
jetzt hab ich das problem, das der fehler not enought parapeters angezeigt wird.
Delphi-Quellcode:
procedure TForm1.FormClick(Sender: TObject);
var i:integer; begin for i:=1 to 47 do begin SKreis[i]:= TShape.Create; SKreis[i].SetBounds(i,i,30,30); SKreis[i].brush.color:=clred; end; end; |
Re: array of TShape
Dann so: SKreis[i]:=TShape.Create(self);
|
Re: array of TShape
Delphi-Quellcode:
es lässt sich jetzt compilieren, aber es ist trotz des repaints nichts zu sehen auf dem bildschirm. warum?
procedure TForm1.Button1Click(Sender: TObject);
var i:integer; begin for i:=1 to 47 do begin SKreis[i]:=TShape.Create(self); SKreis[i].SetBounds(i*2,i*2,30,30); SKreis[i].brush.color:=clred; SKreis[i].Visible:=True; repaint; end; end; |
Re: array of TShape
Hi nobody_anfänger.
Da fehlt imho noch ein
Delphi-Quellcode:
;-)
SKreis[i].Parent := self;
|
Re: array of TShape
danke, jetzt funtz es.
|
Alle Zeitangaben in WEZ +1. Es ist jetzt 17:04 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz