在平台里要动态创建很多个button按钮,这个怎么做啊?
写的代码在平台里报错
var
Button:array[1..10] of TSpeedButton; //这里报错
i,j:integer;
begin
j:=80;
for i:=1 to 10 do
begin
Button:=tspeedbutton.create(self);
button.Parent:= self;
button.Top:=80+j;
Button.Left:=50+j;
Button.Width:=280;
Button.Height:=50;
button.Flat:=True;
Button.Caption:='aa';
Button.Visible:=True;
j+:=j;
end;
这个该怎么做啊??