Código Delphi
[-]//defines: constructor create(aOwner : TComponent; const prm : string); reintroduce;
//implementas
Código Delphi
[-]constructor TMiForma.create(aOwner : TComponent; const prm : string); begin inherited create(aOwner); fPrm := ''; end;
//y llamas
Código Delphi
[-]x := TMiForma.create(application.mainForm, 'hola');