i want to create and show a control dynamically ,such as Tshape. as if form.DblClick response but it didn't show a shape control in the form.
eg:
var shape:Tshape;
begin
shape:=Tshape.create(self);
shape.brush.color:=clred;
shape.brush.style:=bssolid;
shape.shape:=cscircle;
shape.show;
end
ido
wn't know how to show "shape". i tried too many times, but no one
success