Ver Mensaje Individual
  #2  
Antiguo 19-05-2003
__cadetill __cadetill is offline
Miembro
 
Registrado: may 2003
Posts: 3.387
Reputación: 25
__cadetill Va por buen camino
Mira de hacer un inherited de TForm en el Contructor, algo asi

Código:
private
    MiVarLocal: integer;

public
   constructor Create2(Aowner : TComponent; _MiVarLocal: integer);

......

implemantation

constructor TForm1.Create2(Aowner : TComponent; _MiVarLocal: integer);
begin
     inherited Create(Aowner);

     MiVarLocal := _MiVarLocal;
end;
Espero te sirva
Responder Con Cita