How I can create barcode objects in runtime?
Hi, everybody!
I need create barcode objects in runtime at a loop. For example:
It's possible? If yes, how I can do?
Thanks.
I need create barcode objects in runtime at a loop. For example:
var
  Barra : TfrxBarCodeView;
...
for I:= 0; I < 10 do
begin
        Barra := TfrxBarCodeView.Create;
        Barra.Left := 50;
        Barra.Height:= 20;
end;
It's possible? If yes, how I can do?
Thanks.
Comments
It's very simple: