Registriert seit: 10. Jun 2002
Ort: Unterhaching
11.412 Beiträge
Delphi 12 Athens
|
13. Jan 2003, 18:57
Der Owner ist nicht der Parent sondern das Form
Code:
with TLabel.Create([color=#ff0011]Self[/color]) do begin
[i][color=#4400ff]// oder[/color][/i]
with TLabel.Create([color=#ff0011]Form1[/color]) do begin
top:= 8;
left:= 8;
caption:= 'test';
parent:= GroupBox;
name:= 'ip_'+inttostr(getnumber(curr_addr) );
end;
Daniel Lizbeth Ich bin nicht zurück, ich tue nur so
|