Ver Mensaje Individual
  #2  
Antiguo 25-01-2007
Avatar de droguerman
droguerman droguerman is offline
Miembro
 
Registrado: abr 2005
Ubicación: tierra
Posts: 999
Reputación: 20
droguerman Va por buen camino
puedes aplicar herencia o podrias hacer algo como esto
Código Delphi [-]
procedure mifuncion(Sender: Tobject);
begin
end;

var
  x : TForm;
begin
  x := Tform.create(self);
  x.onCreate = mifuncion;
end;
__________________
self.free;
Responder Con Cita