张
张剑波
Unregistered / Unconfirmed
GUEST, unregistred user!
var
btn:tradiobutton;
acount:integer;
begin
for acount:=1 to 10 do
begin
btn:=tradiobutton.create(self);
btn.parent:=self;
btn.name:='aaa'+inttostr(acount);
btn.caption:='bbb'+inttostr(acount);
end;
end;
在一个groupbox1上创建十个radiobutton
如何有选则性的free其中一个。
再:create后,controlcount的数值为何不增加而明明在窗体上已经看到。
btn:tradiobutton;
acount:integer;
begin
for acount:=1 to 10 do
begin
btn:=tradiobutton.create(self);
btn.parent:=self;
btn.name:='aaa'+inttostr(acount);
btn.caption:='bbb'+inttostr(acount);
end;
end;
在一个groupbox1上创建十个radiobutton
如何有选则性的free其中一个。
再:create后,controlcount的数值为何不增加而明明在窗体上已经看到。