Originariamente inviato da denis76
Data una classe che estende TPanel con il seguente costruttore

Codice PHP:
    constructor Create(AOwnerTComponent); override
implementato in questo modo:

Codice PHP:
constructor TBachecaTerminale.Create(AOwnerTComponent);
var
  
IInteger;
begin
  inherited
;
.... 
come posso fare per passare un altro valore oltre ad AOwner: TComponent??

Grazie mille, Denis.
constructor Create(AOwner: TComponent;altro_parametro : tipo_parametro); override;

...

constructor TBachecaTerminale.Create(AOwner: TComponent;altro_parametro : tipo_parametro);
var
I: Integer;
begin
inherited Create(AOwner);

ciao
sergio